Liby
Liby mod is a specialized library designed for Minecraft mod developers. It does not add any gameplay content on its own but serves as an essential dependency component for other modifications.
Note that transitions between major versions (e.g., from 1.0 to 2.0) may break compatibility with mods using previous versions. It's recommended to wait for updates from the respective mod authors.
Integrating Liby into Your Project
Step 1: Configuring ModrinthMaven Repository
To connect the library, you need to add the ModrinthMaven repository to your build.gradle configuration file:
repositories {
maven {
name = "Modrinth Maven"
url = "https://api.modrinth.com/maven"
}
}
Step 2: Adding Liby Dependency
Select the appropriate version for your Minecraft setup in the versions section and add the dependency:
dependencies {
// Main Liby dependency
modImplementation "maven.modrinth:liby:1.21.1-build-2.1.1"
// Additional reflections library dependency
implementation "org.reflections:reflections:0.10.2"
}
Make sure to correctly specify the version number instead of the "