项目作者: NewNanCity

项目描述 :
Useful toolkits java library for Bukkit Server Plugin.
高级语言: Java
项目地址: git://github.com/NewNanCity/Violet.git
创建时间: 2021-02-14T11:19:21Z
项目社区:https://github.com/NewNanCity/Violet

开源协议:MIT License

下载


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:

  1. <repositories>
  2. <repository>
  3. <id>jitpack.io</id>
  4. <url>https://www.jitpack.io</url>
  5. </repository>
  6. </repositories>

Add the dependency:

  1. <dependency>
  2. <groupId>com.github.NewNanCity</groupId>
  3. <artifactId>Violet</artifactId>
  4. <version>VERSION</version>
  5. </dependency>

Gradle

Add it in your root build.gradle at the end of repositories:

  1. repositories {
  2. maven { url 'https://www.jitpack.io' }
  3. }

Add the dependency:

  1. dependencies {
  2. implementation 'com.github.NewNanCity:Violet:VERSION'
  3. }