Skip to content

NewNanCity/Violet

Repository files navigation

Violet CodeQL

Gk0Wk's GitHub stats

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)

How to add Violet to your project

Maven

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>

Gradle

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'
}