Installing YACL

Learn how to import YACL into your development environment.

This wiki is currently a work-in-progress and is incomplete!

Adding YACL as a dependency

First, you will need to add the maven repository that hosts YACL.

repositories {
    maven("https://maven.isxander.dev/releases") {
        name = "Xander Maven"
    }
}

Next, you need to place the YACL version you want to use in your gradle.properties file.

yacl_version=...

Below is a handy chart to find the YACL version based on the Minecraft version and Mod loader you're using.

Next, you need to add the dependency to the classpath.

It is highly discouraged to JiJ (jar in jar) the YACL dependency as it is likely that it's already in the user's mod folder and will significantly increase the size of your JAR.

dependencies {
    modImplementation "dev.isxander:yet-another-config-lib:${project.yacl_version}"
}

Replace (latest) with the latest version of YACL available for the target Minecraft version. You can find this on Modrinth.

If you use Architectury for a multi-loader project, YACL provides no common artifact. Because Architectury is Loom-based, use the fabric artifact as the common one.

Adding YACL as a dependency

Finally, you should also add the dependency in your mod manifest so the loader will crash elegantly if YACL is not present, giving the user a clear description of what they need to do.

fabric.mod.json
"depends": {
  "yet_another_config_lib_v3": ">=YACL_VERSION_HERE"
}

Last updated