Skip to content

Latest commit

 

History

History
70 lines (60 loc) · 1.87 KB

File metadata and controls

70 lines (60 loc) · 1.87 KB

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:

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