1.4 KiB
1.4 KiB
Flan
Server side land claiming mod for fabric
To use flan in your dependencies add the following snippet to your build.gradle
repositories {
maven {
name = "Flemmli97"
url "https://gitlab.com/api/v4/projects/21830712/packages/maven"
}
}
dependencies {
//Fabric==========
modCompileOnly("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}-api") {
transitive = false //Remove this if you want to have all those optional dependencies
}
modRuntime("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}") {
transitive = false //Remove this if you want to have all those optional dependencies
}
//Forge==========
compileOnly fg.deobf("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}-api")
runtimeOnly fg.deobf("io.github.flemmli97:flan:${minecraft_version}-${flan_version}:${mod_loader}")
}