Dependencies

Describes how to add Minestom as a dependency in your project.

Minestom needs Java 21 or newer in order to run. If you are using Gradle, you must use version 7.2 or higher.

Adding Minestom to your Java project is really simple, you only need to add a few repositories:

Repositories

repositories {
    // ...
    mavenCentral()
    maven { url 'https://jitpack.io' }
}

Dependencies

dependencies {
    // ...
    implementation 'com.github.Minestom:Minestom:VERSION'
}

A list of versions can be found at https://jitpack.io/#Minestom/Minestom.

Last updated