mirror of
https://github.com/FabricMC/fabric-loom.git
synced 2025-09-04 11:04:03 +00:00

* Update to Gradle 8.3, and update all other deps. * Fix tests * Lazily download decompilers, generate version constants to ensure they are synced between the build and Gradle. Each decompiler has a configuration, this allows the version to be changed at a later date if needed. * Fix typo :) * Oh so many versions
14 lines
240 B
Groovy
14 lines
240 B
Groovy
rootProject.name = name
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
testLibs {
|
|
from(files("gradle/test.libs.versions.toml"))
|
|
}
|
|
runtimeLibs {
|
|
from(files("gradle/runtime.libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
include "bootstrap" |