Useful toolkits java library for Bukkit Server Plugin.
- ConfigManager (JSON, YAML, TOML, HOCON, Properties, XML, CSV)
- MessageManager (i18n Supported)
- LanguageManager
- CommandManager (Deprecated, and recommend to use aikar's commands)
- DatabaseManager (Now just MySQL)
- NetworkManager (Based on okHttp4)
Add the JitPack repository to your build file:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://www.jitpack.io</url>
</repository>
</repositories>
Add the dependency:
<dependency>
<groupId>com.github.NewNanCity</groupId>
<artifactId>Violet</artifactId>
<version>VERSION</version>
</dependency>
Add it in your root build.gradle at the end of repositories:
repositories {
maven { url 'https://www.jitpack.io' }
}
Add the dependency:
dependencies {
implementation 'com.github.NewNanCity:Violet:VERSION'
}