Dependencies

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

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

Repositories

repositories {
    mavenCentral()
}

Dependencies

dependencies {
    implementation platform('net.onelitefeather.microtus:bom:version')
    implementation 'net.onelitefeather.microtus:Microtus' // Main Components

    testImplementation 'net.onelitefeather.microtus.testing:testing' // Testing Components
}

A list of versions can be found at https://central.sonatype.com/search?q=microtus.

Last updated

Was this helpful?