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