For the complete documentation index, see llms.txt. This page is also available as Markdown.

Developer API

This page explains how to integrate the BuildSystem developer API into your project.

Adding BuildSystem to your project

Maven:

<dependency>
  <groupId>de.eintosti</groupId>
  <artifactId>buildsystem-api</artifactId>
  <version>version</version>
</dependency>

Or alternatively, with Gradle:

repositories {
  mavenCentral()
}
dependencies {
  compileOnly("de.eintosti:buildsystem-api:version")
}

Obtaining an instance of the API

Using the singleton

Note: this method will throw an IllegalStateException if the API is not loaded.

Using the Bukkit ServicesManager

Last updated