-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
zerocool edited this page Jan 10, 2026
·
3 revisions
Composed is a lightweight configuration file library for Minecraft.
To use it in your mod you need to first add it to gradle. First add this to your build.gradle.
repositories {
maven { url 'https://jitpack.io' }
}Then add this line to your dependancies, replacing VERSION with the most recent version, found in either releases or the README.md or the Modrinth page
modApi ("com.github.z3roco01:composed:VERSION")If you want the mod to be packaged with your mod you can replace that line with this:
include modApi("com.github.z3roco01:composed:VERSION")Next see Making a Configuration Class and Loading/Storing a Configuration File