apply from: "https://gitlab.com/-/snippets/2121059/raw/master/jfbase.gradle" repositories { maven { url = "https://maven.terraformersmc.com/"; name = "ModMenu" } maven { url = "https://maven.shedaniel.me/"; name = "Cloth Config" } maven { url = "https://maven.dblsaiko.net/"; name = "Canvas" } maven { url = "https://minecraft.curseforge.com/api/maven"; name = "CurseForge (for canvas)" } maven { url = 'https://server.bbkr.space/artifactory/libs-release'; name = "LibCD" } jcenter(); } dependencies { //to change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" // Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:0.34.2+1.16" modImplementation "com.terraformersmc:modmenu:1.16.9" modApi("me.shedaniel.cloth:cloth-config-fabric:4.+") modApi "io.github.cottonmc:LibCD:3.0.3+1.16.3" modImplementation("grondag:canvas-mc116:+") { exclude(group: "io.github.prospector") exclude(group: "me.shedaniel.cloth") } }