-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
ProstStuff edited this page Jul 10, 2026
·
6 revisions
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.
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