-
Notifications
You must be signed in to change notification settings - Fork 1
Adding to Gradle
Deadlydiamond98 edited this page Aug 2, 2024
·
20 revisions
To add the library to your Project in 1.20.1 add the following
build.gradle
repositories {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
dependencies {
modImplementation "maven.modrinth:magic-bar-lib:${magic_bar_lib_version}"
}
gradle.properties
magic_bar_lib_version=1.0.0
fabric.mod.json
{
"depends": {
"magic-bar-lib": ">=1.0.0"
}
}