This is the Bukkit implementation of Pathetic. It provides a simple API to use the Pathetic engine in your Bukkit plugin.
Currently Paper and Spigot are explicitly supported, every other server software is a lucky hit.
This repository was previously part of the Pathetic repository.
To integrate pathetic into your bukkit project, follow the following steps:
(We advise you to relocate pathetic)
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.bsommerfeld.pathetic-bukkit</groupId>
<artifactId>core</artifactId>
<version>VERSION</version>
</dependency>
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.bsommerfeld.pathetic-bukkit:core:VERSION'
}
See the example module for a detailed example.