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: 5 months 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-31T17:02:23.000Z (6 months ago)
- Last Synced: 2025-01-08T11:37:31.523Z (6 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/#efekos/Simpler)
[](https://opensource.org/licenses/MIT)


[](https://efekos.github.io/Simpler)

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