You can compile the project using gradlew.
Run gradlew shadowJar build
in console to build the project.
You can find already compiled jars on our Jenkins hub!
You must add yourself all the private jars or purchase access to our private repository.
- AdvancedSpawners by GC [link]
- CMI by Zrips [link]
- EpicSpawners by Songoda [link]
- JetsMinions by jet315 [link]
- MergedSpawner by vk2gpz [link]
- ShopGUIPlus by brcdev [link]
The plugin is packed with a rich API for interacting with islands, players and more. When hooking into the plugin, it's highly recommended to only use the API and not the compiled plugin, as the API methods are not only commented, but also will not get removed or changed unless they are marked as deprecated. This means that when using the API, you won't have to do any additional changes to your code between updates.
<repositories>
<repository>
<id>bg-repo</id>
<url>https://repo.bg-software.com/repository/api/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.bgsoftware</groupId>
<artifactId>SuperiorSkyblockAPI</artifactId>
<version>latest</version>
</dependency>
</dependencies>
repositories {
maven { url 'https://repo.bg-software.com/repository/api/' }
}
dependencies {
compileOnly 'com.bgsoftware:SuperiorSkyblockAPI:latest'
}
This plugin is provided "as is", which means no updates or new features are guaranteed. We will do our best to keep updating and pushing new updates, and you are more than welcome to contribute your time as well and make pull requests for bug fixes.
This plugin is licensed under GNU GPL v3.0
This plugin uses HikariCP which you can find here.