Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/efekos/simpler
- Owner: efekos
- License: mit
- Created: 2023-04-21T23:02:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-26T14:32:06.000Z (about 2 months ago)
- Last Synced: 2024-12-26T15:29:23.409Z (about 2 months ago)
- Topics: java, library, minecraft, minecraft-library, minecraft-plugin, minecraft-plugin-api, plugin-api, spigot, spigot-api, spigot-plugin-api, spigot-resource
- Language: Java
- Homepage:
- Size: 1.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
````xmlcom.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'
}
````