LibuLib
LibuLib is a library mod created by the developer for use in personal projects.
To integrate the library into your mod using JitPack, follow these steps:
gradle.properties:
# Specify the latest version of LibuLib
libu_version = 1.2.1
build.gradle:
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
// LibuLib
modImplementation "com.github.u-lumaa:LibuLib:${libu_version}"
}
Use developer versions at your own risk
Alternative integration method via Modrinth Maven:
gradle.properties:
# Specify the latest version of LibuLib
libu_version = 1.2.1
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
dependencies {
modImplementation "maven.modrinth:libu:${libu_version}"
}