This module holds general Bukkit Utilities enabling easier Bukkit Plugin creation.
- FileUtil - UTF-8, Locale and merging config files from jar
- YmlConfiguration - Support for comments in yml-files
- Commands - Framework for easy command-creation
This module is copyrighted by the authors, and licensed for re-use as Apache License 2.0.
Put this in your pom.xml
:
<repositories>
<repository>
<id>uSkyBlock-mvn-repo</id>
<url>https://raw.github.com/rlf/mvn-repo/master</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>dk.lockfuglsang.minecraft</groupId>
<artifactId>bukkit-utils</artifactId>
<version>1.22</version>
</dependency>
</dependencies>
- FileUtil, I18nUtil
Initial release, extracted from the source-code used in uSkyBlock
- YmlConfiguration, Commands