How to use the Hytale Repository?¶
CodeMC offers a Hytale Repository that allows you to download and use specific Hytale server version, without having to do things like running hytale-downloader yourself.
To use the Repository, add the below displayed content to your pom.xml or build.gradle(.kts) file.
Press the icon for extra info.
pom.xml
<repositories>
<repository>
<id>codemc-hytale-repository</id>
<url>https://repo.codemc.io/repository/hytale/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.hypixel.hytale</groupId>
<artifactId>Server</artifactId>
<version>{version}</version> <!-- (1) -->
<scope>provided</scope>
</dependency>
</dependencies>
- Replace
{version}with the desired Hytale server version.
Examples:2026.01.17-4b0f30090,LATESTif you want the latest release.
Press the icon for extra info.
build.gradle
repositories {
maven{ url = "https://repo.codemc.io/repository/hytale/" }
}
dependencies {
compileOnly("com.hypixel.hytale:Server:{version}") // (1)
}
- Replace
{version}with the desired Hytale server version.
Examples:2026.01.17-4b0f30090,+if you want the latest release.
Press the icon for extra info.
build.gradle.kts
repositories {
maven("https://repo.codemc.io/repository/hytale/")
}
dependencies {
compileOnly("com.hypixel.hytale:Server:{version}") // (1)
}
- Replace
{version}with the desired Hytale server version.
Examples:2026.01.17-4b0f30090,+if you want the latest release.