Michael Hoennig
0f71c6a88d
Co-authored-by: Michael Hoennig <michael@hoennig.de> Reviewed-on: #7 Reviewed-by: Timotheus Pokorra <timotheus.pokorra@hostsharing.net>
18 lines
856 B
Properties
18 lines
856 B
Properties
# 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
|
|
|
|
# Spring BOM overrides
|
|
# currently none necessary
|
|
|
|
# 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 ..."
|
|
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 \
|
|
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
|