forked from FabricMC/fabric-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 26
Using Chocoloom
Grayray edited this page Aug 12, 2023
·
3 revisions
In settings.gradle
you need to add Jitpack as a maven.
pluginManagement {
repositories {
maven {
name = "Fabric"
url = "https://maven.fabricmc.net/"
}
maven {
name = "legacy-fabric"
url = "https://repo.legacyfabric.net/repository/legacyfabric/"
}
+ maven {
+ name = 'Jitpack'
+ url = 'https://jitpack.io'
+ }
gradlePluginPortal()
}
}
The fabric-loom version needs to be changed to a commit hash from this repo https://github.com/Chocohead/Fabric-Loom.
plugins {
- id "fabric-loom" version "1.0-SNAPSHOT"
+ id "fabric-loom" version "f7d1318"
}
Additional info be found here https://github.com/Chocohead/Fabric-Loom#readme