Skip to content
/ Simpler Public

Spigot Plugin Development API

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

efekos/Simpler

Repository files navigation

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