mirror of
https://github.com/WiIIiam278/HuskSync.git
synced 2025-12-19 14:59:21 +00:00
* feat: convert Fabric to use essential-multi-version * fix: populate compatibility.yml with mc version * feat: start WIP work on doing the same for bukkit * refactor: use preprocessor plugin to multi-version bukkit * docs: update README to mention multi-version stuff * build: also include javadocs for Bukkit * build: update CI workflows also slightly simplifies buildscript
13 lines
358 B
Groovy
13 lines
358 B
Groovy
plugins {
|
|
id("gg.essential.multi-version.root")
|
|
}
|
|
|
|
preprocess {
|
|
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)
|
|
fabric12101.link(fabric12104, null)
|
|
fabric12001.link(fabric12104, null)
|
|
} |