Compatibility
Minecraft: Java Edition
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Cloud API
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. Just include the platform jar as a plugin and use the dependency as described below.
[!CAUTION] Paper specific API is very experimental and unstable. Use Spigot API if you are running paper!
Features
- [x] Easy API Use: Just add the plugin to your server and include the api as a provided artifact.
- [x] Supported Server Software: Supports Spigot & Forks, BungeeCord and Velocity.
- [ ] Easy API access: Use every api method we provide, just from one interface.
Usage
1. Depend on simplecloud-api
2. Use APIs
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.
Gradle Kotlin
// 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")
Gradle Groovy
// 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'
Maven
<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>
Contributing
Contributions to SimpleCloud are welcome and highly appreciated. However, before you jump right into it, we would like you to read our Contribution Guide.
License
This repository is licensed under Apache 2.0.