This library will help you to simplfy the Spigot-Coding in your server. You can create a Hologram and more.
Notes: This is a library, not a complete spigot plugin.
Requirements
The source code used is
java 8 and built under jdk1.8.0_291. Any java version lower than
java 8 will cause errors.
- Java 8 or later
- Spigot 1.8 or later
Installation
There are many ways to install libraries to your plugin dependencies. You can follow this instruction.
Maven
Add this section inside <repository> tag in your pom.xml.
<repository>
<id>mvn-repo</id> <url>
https://github.com/Unerheblich/SimpleAPI/tree/main/target/mvn-repo</url>
</repository>
Add this section inside <dependency> tag in your pom.xml.
<dependency>
<groupId>net.kaseax</groupId>
<artifactId>SimpleAPI</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Gradle
Follow this instruction if your build tool is Gradle.
Code (Java):
dependencies { implementation 'net.kaseax:simpleapi:1.0' }
Manual
If your project doesn't have any build tools, you can install it manually.
- Download the library in github release.
- Import simpleapi.jar file to your project.
How to use
For see, how to use the API please go to my Github and read the README.md
Unerheblich/SimpleAPI (github.com)