Skip to content

Getting Started

ProstStuff edited this page Jul 10, 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")
}

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 can guarantee to load with Utilitary loaded.


Config

Utilitary config use Minecraft codec as the base serialization and deserialization, however it can be parsed as any files as long as there's a formatter for it.

For more information about Config, visit Config

Clone this wiki locally