blob: 8fa80f6b8f3bfbd930cea8ca329ba8ee2889a0f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = "https://repo.polyfrost.cc/releases" }
maven { url = "https://maven.architectury.dev"}
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "io.github.juuxel.loom-quiltflower-mini") {
useModule("com.github.wyvest:loom-quiltflower-mini:${requested.version}")
}
}
}
}
rootProject.name = mod_name
|