mirror of
https://github.com/barkeser2002/Not-Enough-Crashes.git
synced 2026-09-25 02:20:04 +03:00
23 lines
395 B
Groovy
23 lines
395 B
Groovy
dependencies {
|
|
// We depend on fabric loader here to use the fabric @Environment annotations
|
|
// Do NOT use other classes from fabric loader
|
|
modImplementation "net.fabricmc:fabric-loader:${rootProject.loader_version}"
|
|
}
|
|
|
|
configurations {
|
|
dev
|
|
}
|
|
|
|
artifacts {
|
|
dev(jar)
|
|
}
|
|
|
|
architectury {
|
|
common()
|
|
}
|
|
|
|
remapJar {
|
|
afterEvaluate {
|
|
remapAccessWidener.set(false)
|
|
}
|
|
} |