Getting Started (For Minecraft 1.19.3 To 1.20.1)
The recommended way of adding FCAP to your project is via Gradle in your build.gradle file.
In the groovy snippets make sure to replace <modVersion> with the version of FCAP you intend to use. Version numbers have a pretty simple form such as 8.0.0 (for Minecraft 1.20.1) or 20.4.0 (for Minecraft 1.20.4).
All available versions can be viewed on CurseForge & Modrinth.
FCAP is available as multiple distributions depending on the mod loader / type of project you want to use it on. You will not need to depend on FCAP on the mod loader the config system is ported from.
| Project Type | Distribution Name | Forge Api | Namespace |
|---|---|---|---|
| Common | forgeconfigapiport-common |
✅ | Named |
| Fabric | forgeconfigapiport-fabric |
✅ | Intermediary |
repositories {
maven {
name = "Fuzs Mod Resources"
url = ""
}
}dependencies {
api "fuzs.forgeconfigapiport:forgeconfigapiport-common:<modVersion>"
}dependencies {
modApi "fuzs.forgeconfigapiport:forgeconfigapiport-fabric:<modVersion>"
}