Skip to content

Getting Started

ProstStuff edited this page Jul 9, 2026 · 6 revisions

Installation

build.gradle

repositories {
	maven {  
	    url = "https://jitpack.io"
    }
}

dependencies {
	// Change <version> with Utilitary GitHub release version tag
    implementation "com.github.ProstStuff:Utilitary:<version>"
    
	// Alternatively, you can store Utilitary locally in your project and have it loaded. You don't need to include jitpack.io maven url for this.
	implementation files("<project_root>/utilitary-<version>.jar")
	// Please note that this does not bundle Utilitary to your mod.
}

Resync your Gradle project to properly load Utilitary and you're done!

Tip

It's recommended to also add explicit dependency in your mod fabric.mod.json. This way your mod is guarantee to load with Utilitary present.

Next Steps

Clone this wiki locally