mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-23 00:29:51 +00:00
29 lines
679 B
Plaintext
29 lines
679 B
Plaintext
plugins {
|
|
alias(libs.plugins.mod.architectury.loom)
|
|
alias(libs.plugins.mod.architectury.plugin)
|
|
alias(libs.plugins.mod.loom.quiltflower)
|
|
}
|
|
|
|
loom {
|
|
accessWidenerPath.set(file("src/main/resources/terra.accesswidener"))
|
|
|
|
mixin {
|
|
defaultRefmapName.set("terra.common.refmap.json")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
shadedApi(project(":common:implementation:base"))
|
|
|
|
modImplementation(libs.mod.fabric.fabric.loader)
|
|
|
|
minecraft(libs.mod.minecraft)
|
|
mappings("net.fabricmc", "yarn", libs.versions.mod.yarn.get(), classifier = "v2")
|
|
}
|
|
|
|
architectury {
|
|
common("fabric", "forge", "quilt")
|
|
minecraft = libs.versions.mod.minecraft.get()
|
|
}
|
|
|