Fix recipe syncing, improve (add) error handling.
This commit is contained in:
parent
bd6bcf55ab
commit
fa657d46e8
24 changed files with 273 additions and 126 deletions
12
build.gradle
12
build.gradle
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue