aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-05-09 14:18:42 +0900
committerGitHub <noreply@github.com>2023-05-09 07:18:42 +0200
commit760c9ececc223d2a31077b3d7aa3e5e53c1e7fae (patch)
tree409232c2ca9a6b57596ec67d98a3d733259cfc0b /build.gradle
parent08a022a07cbc3b70ebfde85eb67cf1f914543d90 (diff)
downloadGT5-Unofficial-760c9ececc223d2a31077b3d7aa3e5e53c1e7fae.tar.gz
GT5-Unofficial-760c9ececc223d2a31077b3d7aa3e5e53c1e7fae.tar.bz2
GT5-Unofficial-760c9ececc223d2a31077b3d7aa3e5e53c1e7fae.zip
Update dependencies (#322)
Former-commit-id: 665ecd88259d026ce15ba11b831ad91983dd5518
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 7 insertions, 3 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.")
}
}