Files
nugget/common/build.gradle
angel 512e480c9b
All checks were successful
Build and Artifact / build (push) Successful in 2m46s
fabric & neoforge stable 1.3.1+1.21.11
2026-01-07 18:03:13 -06:00

23 lines
668 B
Groovy

architectury {
common rootProject.enabled_platforms.split(',')
}
sourceSets {
main {
resources {
srcDir 'src/main/generated'
}
}
}
dependencies {
// We depend on Fabric Loader here to use the Fabric @Environment annotations,
// which get remapped to the correct annotations on each platform.
// Do NOT use other classes from Fabric Loader.
modImplementation "net.fabricmc:fabric-loader:$rootProject.fabric_loader_version"
// Architectury API. This is optional, and you can comment it out if you don't need it.
modImplementation "dev.architectury:architectury:$rootProject.architectury_api_version"
}