Important
This project is breaking down into multiple libraries in order to make it easier to maintain, and won't get any updates anymore. The new libraries will support Paper as well. Libraries out so far:
- Arn for commands created through NMS.
- PopularConfigurations for configs with color translators.
- ManagedMenus for custom GUIs.
Simpler is an API that helps you make spigot plugins with a lot of different ways. With Simpler, you can make
- Custom commands
- Custom items
- Custom menus
- Custom config files (Even .JSON ones!)
- Custom data using .JSON files
- Add this repository:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- Add this dependency
<dependency>
<groupId>com.github.efekos</groupId>
<artifactId>Simpler</artifactId>
<version>1.7.1</version>
</dependency>
- Add this repository:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add this dependency:
dependencies {
implementation 'com.github.efekos:Simpler:1.7.1'
}