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

gradle.properties
# Put the latest version of LibuLib
libu_version = 1.3.1
build.gradle
repositories {
	maven {
		url "https://jitpack.io"
	}
}

dependencies {
	// LibuLib
	modImplementation "com.github.u-lumaa:LibuLib:${libu_version}"
}

Modrinth Maven

gradle.properties
# Put the latest version of LibuLib
libu_version = 1.3.1

Last updated