aboutsummaryrefslogtreecommitdiff
path: root/buildScripts
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2022-04-04 02:49:25 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2022-04-04 02:49:25 +0200
commit773b374340db705c3adc9e5e4c4228659c9d311b (patch)
tree6779c4cdc1ed68fe8862e4bcf9bae3bde24f4f5f /buildScripts
parent05493887f6c485baf68effab09451ed7120b9874 (diff)
downloadlombok-773b374340db705c3adc9e5e4c4228659c9d311b.tar.gz
lombok-773b374340db705c3adc9e5e4c4228659c9d311b.tar.bz2
lombok-773b374340db705c3adc9e5e4c4228659c9d311b.zip
[build] Replace JDK test targets from v14 en v16 to v17 (LTS) and v18 (just released)
Diffstat (limited to 'buildScripts')
-rw-r--r--buildScripts/tests.ant.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/buildScripts/tests.ant.xml b/buildScripts/tests.ant.xml
index 838ac353..0191d642 100644
--- a/buildScripts/tests.ant.xml
+++ b/buildScripts/tests.ant.xml
@@ -126,14 +126,14 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn
<test.javacX version="11" />
</target>
- <!-- For non-LTS versions, feel free to aggressively update these to the current non-LTS openjdk version, and delete them once they roll out of the 6month window. -->
+ <!-- For non-LTS versions, feel free to aggressively update these to the current non-LTS openjdk version, and delete them once they roll out of the 6 month window. -->
- <target name="test.javac14" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac14 as underlying compiler">
- <test.javacX version="14" />
+ <target name="test.javac17" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac17 as underlying compiler">
+ <test.javacX version="17" />
</target>
- <target name="test.javac16" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac16 as underlying compiler">
- <test.javacX version="16" />
+ <target name="test.javac18" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac18 as underlying compiler">
+ <test.javacX version="18" />
</target>
<target name="test.javacCurrent" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using its javac as underlying compiler">
@@ -227,5 +227,5 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn
</target>
<target name="test" depends="test.javacCurrent, test.eclipse-202006" description="runs the tests against the default JVM, javac, and eclipse" />
- <target name="test.broad" depends="test.javac8, test.javac14, test.eclipse-oxygen, test.eclipse-202006, test.eclipse-202006-jdk8" description="runs the tests against the default JVM, javac, and eclipse" />
+ <target name="test.broad" depends="test.javac8, test.javac17, test.javac18, test.eclipse-oxygen, test.eclipse-202006, test.eclipse-202006-jdk8" description="runs the tests against the default JVM, javac, and eclipse" />
</project>