Skip to content

efekos/Simpler

Repository files navigation

License: MIT version

Simpler

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

Installation

Maven

  • 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>

Gradle

  • Add this repository:
allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}
  • Add this dependency:
dependencies {
	implementation 'com.github.efekos:Simpler:1.7.1'
}