A lightweight and easy to use library for fast plugin creation, built as a base for all my plugins, without the need to manually copy classes many times throughout each project.
Our library comes with a few useful additions to help with boilerplate code, and we look to expand this as time goes on.
Add the following to your pom.xml
<repositories>
<!-- Other repos.. -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Then, add the following dependency to your pom.xml
<dependency>
<groupId>com.github.heychazza</groupId>
<artifactId>spigot-plugin-lib</artifactId>
<version>v1.3.8</version>
</dependency>
Add the following to your build.gradle
allprojects {
repositories {
maven {
url 'https://jitpack.io'
}
}
}
Then, add the following dependency to your build.gradle
dependencies {
implementation 'com.github.heychazza:spigot-plugin-lib:v1.3.8'
}
You can compile the library by running the following command.
./gradlew shadowJar