Fix recipe syncing, improve (add) error handling.

This commit is contained in:
modmuss50 2022-01-27 20:34:26 +00:00
parent bd6bcf55ab
commit fa657d46e8
24 changed files with 273 additions and 126 deletions

View file

@ -78,6 +78,10 @@ allprojects {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
loom {
runtimeOnlyLog4j = true
}
// Shared deps between TR and RC
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
@ -173,8 +177,12 @@ dependencies {
disabledOptionalDependency "net.oskarstrom:DashLoader:${project.dashloader_version}"
// Use groovy for datagen/gametest, if you are copying this you prob dont want it.
gametestImplementation 'org.apache.groovy:groovy:4.0.0-beta-2'
datagenImplementation 'org.apache.groovy:groovy:4.0.0-beta-2'
gametestImplementation 'org.apache.groovy:groovy:4.0.0-rc-2'
datagenImplementation 'org.apache.groovy:groovy:4.0.0-rc-2'
gametestImplementation ("com.google.truth:truth:1.1.3") {
exclude module: "guava"
}
}
def optionalDependency(String dep) {