mirror of
https://github.com/WiIIiam278/HuskSync.git
synced 2025-12-29 19:49:13 +00:00
17 lines
554 B
Groovy
17 lines
554 B
Groovy
plugins {
|
|
id("gg.essential.multi-version.root")
|
|
}
|
|
|
|
preprocess {
|
|
def fabric12107 = createNode("1.21.7", 12107, "yarn")
|
|
def fabric12105 = createNode("1.21.5", 12105, "yarn")
|
|
def fabric12104 = createNode("1.21.4", 12104, "yarn")
|
|
def fabric12101 = createNode("1.21.1", 12101, "yarn")
|
|
def fabric12001 = createNode("1.20.1", 12001, "yarn")
|
|
|
|
strictExtraMappings.set(true)
|
|
fabric12105.link(fabric12107, null)
|
|
fabric12104.link(fabric12107, null)
|
|
fabric12101.link(fabric12107, null)
|
|
fabric12001.link(fabric12107, null)
|
|
} |