The official integration API for the UltimateKoth ecosystem. Built to provide content creators and developers with complete control over koth management, internal hooks, and custom events.
Choose one of the repositories below to add the UltimateKoth API as a dependency in your build manager (Maven).
The official, fastest, and most stable method. It does not require adding any extra repository to your pom.xml, as the Maven ecosystem fetches the artifacts natively.
dependencies {
implementation("io.github.ulrichbr:UltimateKoth:VERSION")
}<dependencies>
<dependency>
<groupId>io.github.ulrichbr</groupId>
<artifactId>UltimateKoth</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
</dependencies>Use this option if you need to compile specific commits from branches or legacy versions hosted directly on the GitHub repository.
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.UlrichBR:UKoth-API:VERSION'
}<repositories>
<repository>
<id>jitpack.io</id>
<url>[https://jitpack.io](https://jitpack.io)</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.UlrichBR</groupId>
<artifactId>UKoth-API</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
</dependencies>This project is licensed under the MIT License. See the LICENSE file for more details.