A fork of ExperienceLib
This project is still in development, so expect some bugs and missing features. If you find any bugs or have any feature requests, please open an issue on the GitHub repository
A Minecraft plugin api that provides a lot of benefit to develop Minecraft plugin much easier
- Better Command registration
- Better Config Creator
- Better GUI creation
- Better Item Configuration, item interaction, item locking and unique item management
- Better Entity Configuration and Storing
- Auto Register for cleaner code and management
- Database support (MYSQL)
- Discord JDA Boostrap (SlashCommands)
- More GUI features (Paginated GUI, Animated GUI)
- More Item features (Item Enchantments, Item Attributes)
- More Entity features (Custom Entities, Entity Attributes)
- More Command features (SubCommands, Command Aliases)
- Custom Crafting Recipes
- Discord JDA support (TextCommands, Listeners)
- More database support (SQLite, MongoDB)
If the library is published to GitHub Packages, add the GitHub repository and dependency to your pom.xml
:
<project>
...
<repositories>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.pinont</groupId>
<artifactId>SingularityLib</artifactId>
<version>Tag</version>
</dependency>
</dependencies>
...
</project>
To use SingularityLib, your main class must extend CorePlugin
instead of JavaPlugin
.
public class Main extends CorePlugin {
@Override
public void onPluginStart() {
// plugin start logic goes here
}
@Override
public void onPluginStop() {
// plugin stop logic goes here
}
}