Skip to content

Installation

Gradle

Add the Hudkit API to your build.gradle.kts:

repositories {
maven {
url = uri("https://repo.hudkit.net/releases")
}
}
dependencies {
implementation("net.hudkit:api:f6bb74a")
}

Maven

Add the Hudkit repository to your pom.xml:

<repository>
<id>hudkit</id>
<url>https://repo.hudkit.net/releases</url>
</repository>

Then add the dependency:

<dependency>
<groupId>net.hudkit</groupId>
<artifactId>api</artifactId>
<version>f6bb74a</version>
</dependency>

Hudkit depends on Adventure, which may cause transitive dependency issues. A fix that often helps is to directly depend Adventure inside of your project, if you haven’t already.

Gradle:

implementation("net.kyori:adventure-api:4.25.0")

Maven:

<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-api</artifactId>
<version>4.25.0</version>
</dependency>