Skip to content
GMalvestiti edited this page Aug 31, 2026 · 3 revisions

Artifacts are published to Maven Central under the group com.gmalvestiti.minecraft, with one artifact per loader:

Loader Artifact
Fabric liteconfig-fabric
NeoForge liteconfig-neoforge

Maven versions include the Lite Config version and the Minecraft build target:

Minecraft Lite Config
1.21-1.21.10 1.0.0-1.21
1.21.11 1.0.0-1.21.11
26.1-latest 1.0.0-26.1

The examples below target the 1.21 build.

Fabric
repositories {
    mavenCentral()
}

dependencies {
    modImplementation 'com.gmalvestiti.minecraft:liteconfig-fabric:1.0.0-1.21'
}

Declare the dependency so the loader refuses to start without it:

{
  "depends": {
    "liteconfig": ">=1.0.0-1.21"
  }
}
NeoForge
repositories {
    mavenCentral()
}

dependencies {
    implementation 'com.gmalvestiti.minecraft:liteconfig-neoforge:1.0.0-1.21'
}

Declare the dependency in META-INF/neoforge.mods.toml:

[[dependencies.yourmodid]]
modId = "liteconfig"
type = "required"
versionRange = "[1.0.0,)"
ordering = "NONE"
side = "BOTH"

Clone this wiki locally