All information about this project can be found in our detailed documentation.
This Project aims to provide very easy API access. This project fixes all dependency issues that were present before. Install the platform JAR on the server and use the dependency as described below.
Caution
Paper specific API is very experimental and unstable. Use Spigot API if you are running paper!
- Easy API Use: Just add the plugin to your server and include the api as a provided artifact.
- Supported Server Software: Supports Spigot and forks, Paper, Folia, BungeeCord, Velocity, Fabric, Quilt, and NeoForge.
- Easy API access: Use every api method we provide, just from one interface.
- Put the Spigot, Paper, Folia, BungeeCord, and Velocity JAR in the server's
pluginsdirectory. - Put the Fabric/Quilt or NeoForge JAR in the server's
modsdirectory. - The shared Fabric/Quilt build requires Fabric API.
- Fabric, Quilt, and NeoForge support is server-side only, targets Minecraft 26.2, and does not require clients to install the mod.
For always up-to-date artifacts visit dev artifacts or artifacts.
Note: If you want to use the dev version, you have to use the snapshot repository.
// Use Controller API if you want
compileOnly("app.simplecloud.controller:controller-api:VERSION")
// Use Player API if you want
compileOnly("app.simplecloud.controller:controller-api:VERSION")// Use Controller API if you want
compileOnly 'app.simplecloud.controller:controller-api:VERSION'
// Use Player API if you want
compileOnly 'app.simplecloud.controller:controller-api:VERSION'<dependencies>
<!-- Use Controller API if you want -->
<dependency>
<groupId>app.simplecloud.controller</groupId>
<artifactId>controller-api</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
<!-- Use Player API if you want -->
<dependency>
<groupId>app.simplecloud.droplet.player</groupId>
<artifactId>player-api</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
</dependencies>Contributions to SimpleCloud are welcome and highly appreciated. However, before you jump right into it, we would like you to read our Contribution Guide.
This repository is licensed under Apache 2.0.