SnowyGUI/common/build.gradle.kts
Username404 22b8bc19e1
Don't include the fabric api in the common project
Signed-off-by: Username404 <w.iron.zombie@gmail.com>
2022-03-25 15:21:49 +01:00

10 lines
365 B
Plaintext

architectury { common(); injectInjectables = false }
dependencies {
modImplementation("net.fabricmc:fabric-loader:${rootProject.property("fabric_loader_version")}")
implementation("me.shedaniel.cloth:cloth-config:${rootProject.property("clothconfig_version")}") {
exclude(module = "fabric-api")
}
}
tasks.getByName("shrinkJar").enabled = false