diff options
author | miozune <miozune@gmail.com> | 2023-05-09 15:24:31 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 08:24:31 +0200 |
commit | 707e02fc5fa9d9e4c6cc2a4ab2e0b2b72fbd58d9 (patch) | |
tree | d3584b1515ad11c82182029c6d6a0ef8ce02854c | |
parent | d4c24c4d666f21d3132cf355e6e15b425c0f4369 (diff) | |
download | GT5-Unofficial-707e02fc5fa9d9e4c6cc2a4ab2e0b2b72fbd58d9.tar.gz GT5-Unofficial-707e02fc5fa9d9e4c6cc2a4ab2e0b2b72fbd58d9.tar.bz2 GT5-Unofficial-707e02fc5fa9d9e4c6cc2a4ab2e0b2b72fbd58d9.zip |
Update dependencies (#620)
-rw-r--r-- | build.gradle | 10 | ||||
-rw-r--r-- | dependencies.gradle | 12 |
2 files changed, 10 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle index 6243482331..78ed8d44f0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1683056771 +//version: 1683563728 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. @@ -72,7 +72,7 @@ plugins { id 'com.gtnewhorizons.retrofuturagradle' version '1.3.7' } -print("You might want to check out './gradlew :faq' if your build fails.") +print("You might want to check out './gradlew :faq' if your build fails.\n") boolean settingsupdated = verifySettingsGradle() settingsupdated = verifyGitAttributes() || settingsupdated @@ -222,6 +222,8 @@ if (enableModernJavaSyntax.toBoolean()) { dependencies { annotationProcessor 'com.github.bsideup.jabel:jabel-javac-plugin:1.0.0' + // workaround for https://github.com/bsideup/jabel/issues/174 + annotationProcessor 'net.java.dev.jna:jna-platform:5.13.0' compileOnly('com.github.bsideup.jabel:jabel-javac-plugin:1.0.0') { transitive = false // We only care about the 1 annotation class } @@ -1264,7 +1266,9 @@ tasks.register('faq') { 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.") + "not build.gradle:buildscript.repositories - this one is 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.") } } diff --git a/dependencies.gradle b/dependencies.gradle index 4c36087c53..0155edd561 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -1,24 +1,18 @@ dependencies { - api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.20:dev') - api("com.github.GTNewHorizons:bartworks:0.7.4:dev") - api("com.github.GTNewHorizons:TecTech:5.2.1:dev") + api('com.github.GTNewHorizons:GT5-Unofficial:5.09.43.21:dev') + api("com.github.GTNewHorizons:bartworks:0.7.6:dev") implementation('curse.maven:cofh-core-69162:2388751') // https://www.curseforge.com/minecraft/mc-mods/advancedsolarpanels implementation('curse.maven:advsolar-362768:2885953') compileOnly('com.github.GTNewHorizons:Baubles:1.0.1.16:dev') {transitive=false} - compileOnly('com.github.GTNewHorizons:ForestryMC:4.6.7:dev') {transitive=false} - compileOnly('com.github.GTNewHorizons:Railcraft:9.14.1:dev') {transitive=false} - compileOnly('com.github.GTNewHorizons:EnderIO:2.4.11:dev') {transitive=false} compileOnly('com.github.GTNewHorizons:EnderCore:0.2.13:dev') {transitive=false} compileOnly('com.github.GTNewHorizons:SC2:2.0.2:dev') {transitive=false} compileOnly('com.github.GTNewHorizons:Binnie:2.1.0:dev') {transitive = false} compileOnly('curse.maven:PlayerAPI-228969:2248928') {transitive=false} - compileOnly('com.github.GTNewHorizons:BuildCraft:7.1.33:dev') {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} - compileOnly("com.github.GTNewHorizons:ProjectRed:4.7.9-GTNH:dev") {transitive = false} - runtimeOnly('com.github.GTNewHorizons:ForestryMC:4.6.7:dev') + runtimeOnly('com.github.GTNewHorizons:ForestryMC:4.6.7:dev') {transitive=false} } |