Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/efekos/simpler

Spigot Plugin Development API
https://github.com/efekos/simpler

java library minecraft minecraft-library minecraft-plugin minecraft-plugin-api plugin-api spigot spigot-api spigot-plugin-api spigot-resource

Last synced: about 1 month ago
JSON representation

Spigot Plugin Development API

Awesome Lists containing this project

README

        

> [!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](https://github.com/efekos/Arn) for commands created through NMS.
> * [PopularConfigurations](https://github.com/efekos/PopularConfigurations) for configs with color translators.
> * [ManagedMenus](https://github.com/efekos/ManagedMenus) for custom GUIs.

[![](https://jitpack.io/v/efekos/Simpler.svg)](https://jitpack.io/#efekos/Simpler)
[![License: MIT](https://flat.badgen.net/badge/Lisence/MIT)](https://opensource.org/licenses/MIT)
![version](https://flat.badgen.net/github/release/efekos/Simpler)
![](https://flat.badgen.net/github/stars/efekos/Simpler)
[![](https://flat.badgen.net/badge/JavaDoc/available/green)](https://efekos.github.io/Simpler)
![](https://flat.badgen.net/badge/Tutorials/unavaliable/red)
# Simpler

* [Simpler](#simpler)
* [Installation](#installation)
* [Maven](#maven)
* [Gradle](#gradle)

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:
````xml


jitpack.io
https://jitpack.io

````
* Add this dependency
````xml

com.github.efekos
Simpler
1.7.1

````

### Gradle

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