This is a useful core that will simplify your coding experience with paper, velocity, ...
- Download the latest version of the Core from the Discord.
- Place the
.jar
file in theplugins
folder of your server. - Restart your server.
- You are able to use the API now.
To use the API in your plugin, add the following line to your plugin.yml
file:
depend: [Core]
You also have to add the dependency to your project. You can do this by adding the following to your
build.gradle.kts
, build.gradle
or pom.xml
file:
maven("https://maven.pkg.github.com/smoofy19/SmoofyCore")
maven { url 'https://maven.pkg.github.com/smoofy19/SmoofyCore' }
<repository>
<id>smoofycore</id>
<url>https://maven.pkg.github.com/smoofy19/SmoofyCore</url>
</repository>
compileOnly("de.smoofy.core:core-api:VERSION")
compileOnly("de.smoofy.core:core-api:VERSION")
<dependency>
<groupId>de.smoofy.core</groupId>
<artifactId>core-api</artifactId>
<version>VERSION</version>
</dependency>
You can find the documentation here. For examples on how to use the API, please refer to the examples.
Contributions are welcome! If you have suggestions or found any issues, please open an issue or create a pull request.
This project is licensed under the Apache-2.0 license.