Import using Gradle
Import LibuLib using JitPack or Modrinth Maven
Before importing, you have to know Libu uses Fabric and will not support Forge.
Import
JitPack
# Put the latest version of LibuLib
libu_version = 1.3.1
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
// LibuLib
modImplementation "com.github.u-lumaa:LibuLib:${libu_version}"
}
Modrinth Maven
# Put the latest version of LibuLib
libu_version = 1.3.1
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
dependencies {
modImplementation "maven.modrinth:libu:${libu_version}"
}
Last updated