diff options
author | Martin Robertz <dream-master@gmx.net> | 2023-06-07 12:12:03 +0200 |
---|---|---|
committer | Martin Robertz <dream-master@gmx.net> | 2023-06-07 12:12:03 +0200 |
commit | 0e259fd6c5bc2e110c1e3d3cead4f54fb51a75b4 (patch) | |
tree | d2b128a547fc73a1e4f2eb0b453d1172c3418a17 | |
parent | 776b26be55c726a240ae227e60892d44addc0d28 (diff) | |
download | GT5-Unofficial-0e259fd6c5bc2e110c1e3d3cead4f54fb51a75b4.tar.gz GT5-Unofficial-0e259fd6c5bc2e110c1e3d3cead4f54fb51a75b4.tar.bz2 GT5-Unofficial-0e259fd6c5bc2e110c1e3d3cead4f54fb51a75b4.zip |
update bs+deps
-rw-r--r-- | build.gradle | 14 | ||||
-rw-r--r-- | dependencies.gradle | 6 |
2 files changed, 11 insertions, 9 deletions
diff --git a/build.gradle b/build.gradle index a8b7532dea..3930990407 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1684218858 +//version: 1685785062 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -1276,12 +1276,14 @@ tasks.register('faq') { description = 'Prints frequently asked questions about building a project' doLast { - print("If your build fails to fetch dependencies, they might have been deleted and replaced by newer " + - "versions.\nCheck if the versions you try to fetch are still on the distributing sites.\n" + - "The links can be found in repositories.gradle and build.gradle:repositories, " + - "not build.gradle:buildscript.repositories - this one is for gradle plugin metadata.\n\n" + + print("If your build fails to fetch dependencies, run './gradlew updateDependencies'. " + + "Or you can manually check if the versions are still on the distributing sites - " + + "the links can be found in repositories.gradle and build.gradle:repositories, " + + "but not build.gradle:buildscript.repositories - those ones are for gradle plugin metadata.\n\n" + "If your build fails to recognize the syntax of new Java versions, enable Jabel in your " + - "gradle.properties. See how it's done in GTNH ExampleMod/gradle.properties.") + "gradle.properties. See how it's done in GTNH ExampleMod/gradle.properties. " + + "However, keep in mind that Jabel enables only syntax features, but not APIs that were introduced in " + + "Java 9 or later.") } } diff --git a/dependencies.gradle b/dependencies.gradle index 322ff90e60..43b01704c7 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,6 +1,6 @@ dependencies { - api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.67-pre:dev') - api("com.github.GTNewHorizons:bartworks:0.7.12:dev") + api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.80:dev') + api("com.github.GTNewHorizons:bartworks:0.7.16:dev") implementation('curse.maven:cofh-core-69162:2388751') // https://www.curseforge.com/minecraft/mc-mods/advancedsolarpanels @@ -9,7 +9,7 @@ dependencies { compileOnly('com.github.GTNewHorizons:Baubles:1.0.1.16:dev') {transitive=false} compileOnly('com.github.GTNewHorizons:EnderCore:0.2.14:dev') {transitive=false} compileOnly('com.github.GTNewHorizons:SC2:2.0.2:dev') {transitive=false} - compileOnly('com.github.GTNewHorizons:Binnie:2.1.1:dev') {transitive = false} + compileOnly('com.github.GTNewHorizons:Binnie:2.1.2:dev') {transitive = false} compileOnly('curse.maven:PlayerAPI-228969:2248928') {transitive=false} compileOnly('thaumcraft:Thaumcraft:1.7.10-4.2.3.5:dev') {transitive=false} compileOnly('com.github.GTNewHorizons:Chisel:2.11.0-GTNH:dev') {transitive=false} |