-
Notifications
You must be signed in to change notification settings - Fork 7
/
gradle.properties
32 lines (26 loc) · 1.14 KB
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
supernautVersion = 0.4.1-SNAPSHOT
helloAppVersion = 1.4.1
testAppVersion = 1.4.1
signJPackageImages = false
# Major (whole number) version of JDK to use for javac, jlink, jpackage, etc.
javaToolchainVersion = 17
# Vendor for javaToolChain. (Should be indicator string from Gradle's KnownJvmVendor enum or empty string)
# Official builds use 'Eclipse Adoptium'
#javaToolchainVendor = Eclipse Adoptium
javaToolchainVendor =
# Where to look for JDKs (via environment variables)
org.gradle.java.installations.fromEnv = JAVA_HOME, JDK21
# Auto-detection can be disabled if you have multiple JDKs of the
# same version installed and Gradle won't reliably select the version you actually want
org.gradle.java.installations.auto-detect = true
# auto-download should generally be disabled and is definitely annoying if you are using
# JDK early access versions and Gradle just reports errors when trying to download them.
org.gradle.java.installations.auto-download = false
# Module Dependencies
javaFxVersion = 17.0.7
micronautVersion = 3.4.4
slf4jVersion = 2.0.9
# Test dependencies
micronautTestSpockVersion = 3.0.5
spockVersion = 2.3-groovy-4.0
groovyVersion = 4.0.15