Skip to content

Implementation

This section describes how to implement the API in your project. It is made for PaperMC plugins, so we highly recommend you to use PaperMC as your server software.

To use the API in your project, you have to add the following dependency to your pom.xml:

pom.xml
<dependency>
    <groupId>eu.wolkenlosmc</groupId>
    <artifactId>wolkenlosapi</artifactId>
    <version>1.1.3</version>
</dependency>

To use the API in your project, you have to add the following dependency to your build.gradle:

build.gradle.kts
repositories {
    mavenCentral()
}

dependencies {
    implementation("eu.wolkenlosmc:wolkenlosapi:1.1.3")
}