Skip to content

How To Install

Usage in your own mod

First add the required maven repositories to your build.gradle file in the root

allprojects {
    repositories {
        maven {
            name "Vrglabs Libraries"
            url "https://maven.thevrglab.com/"
        }
        maven {
            name "Mod Menu"
            url "https://maven.terraformersmc.com/releases"
        }
    }
}

Change the mappings to be multi-layered

1
2
3
4
mappings loom.layered() {
    "net.fabricmc:yarn:$rootProject.yarn_mappings:v2"
    officialMojangMappings()
}

and then modify the build.gradle for the proper project/Projects

1
2
3
dependencies {
    modImplementation 'org.Vrglab.AzureLib:azureLib:common-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}
1
2
3
dependencies {
    modImplementation 'org.Vrglab.AzureLib:azureLib:neoforge-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}

Info

Fabric-Like is a project containing shared code between Fabric and Quilt

1
2
3
dependencies {
    modImplementation 'org.Vrglab.AzureLib:azureLib:fabric-like-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}
1
2
3
dependencies {
    modImplementation 'org.Vrglab.AzureLib:azureLib:fabric-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}
1
2
3
dependencies {
    modImplementation 'org.Vrglab.AzureLib:azureLib:quilt-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}