2024-01-05 15:16:12 +01:00
|
|
|
# Gradle Java Toolchain-support
|
|
|
|
org.gradle.java.installations.auto-detect=true
|
|
|
|
org.gradle.java.installations.auto-download=true
|
|
|
|
# org.gradle.jvm.toolchain.install.adoptopenjdk.baseUri
|
|
|
|
# org.gradle.java.installations.paths -- uncomment and set if needed
|
2022-08-11 12:35:19 +02:00
|
|
|
|
|
|
|
# Spring BOM overrides
|
2022-10-28 17:12:07 +02:00
|
|
|
# currently none necessary
|
2022-08-25 17:27:17 +02:00
|
|
|
|
2022-09-07 12:25:12 +02:00
|
|
|
# TODO: can be removed if all dependencies are JDK 16 compliant, check with `gw clean check`
|
|
|
|
# and check output for "cannot access class ... because module jdk.compiler does not export ..."
|
2022-08-26 16:06:27 +02:00
|
|
|
org.gradle.jvmargs= \
|
|
|
|
--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
|
|
|
|
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
|
|
|
|
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
|
|
|
|
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
|
2022-10-28 17:12:07 +02:00
|
|
|
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
|