Skip to content

Developer

To add Globox_Z mods to your project as a dependency, begin by including the modrinth maven in the repositories block of your build.gradle

build.gradle
repositories {
    maven { url 'https://api.modrinth.com/maven' }
}

Then, declare the dependency inside your dependencies block and as well as the version you want to use inside your gradle.properties

dependencies {
    modImplementation "maven.modrinth:modid:${project.modid_version}"
}
modid_version=...

Check out the modrinth page for the version you are looking for, usually ending +mc_version (e.g. +1.20.1).


Last update: 2023-09-26