LibuLib
Discord
  • Import using Gradle
  • LibuWeapons
  • Custom Generation
  • Libu UI
    • LibuToast
  • Util
Powered by GitBook
On this page
  • Import
  • JitPack
  • Modrinth Maven

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
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}"
}
NextLibuWeapons

Last updated 2 years ago