Skip to content

Getting Started

zerocool edited this page Jan 10, 2026 · 3 revisions

Composed is a lightweight configuration file library for Minecraft.

Using in a Mod

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

Clone this wiki locally