Files
CullLeaves/fabric-like/build.gradle
Motschen 54e6d69456 Port to Architectury
Still need to figure out how to register built-in resource packs on forge
2022-11-02 18:21:21 +01:00

17 lines
552 B
Groovy

architectury {
injectInjectables = false
common(rootProject.enabled_platforms.split(","))
}
loom {
}
dependencies {
modImplementation "net.fabricmc:fabric-loader:${rootProject.fabric_loader_version}"
modApi "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_api_version}"
// Remove the next line if you don't want to depend on the API
modApi "dev.architectury:architectury-fabric:${rootProject.architectury_version}"
compileClasspath(project(path: ":common", configuration: "namedElements")) { transitive false }
}