diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2021-03-19 03:05:01 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2021-03-19 03:17:39 +0100 |
commit | 5241235b99286243d02463adc7f8b0fd3d9ab5b4 (patch) | |
tree | 3ef01318d0619865af1892fc5e1a8f391af6b024 /buildScripts | |
parent | e69d0b143e9ebc909cc607402c1e93fd1bcd60f3 (diff) | |
download | lombok-5241235b99286243d02463adc7f8b0fd3d9ab5b4.tar.gz lombok-5241235b99286243d02463adc7f8b0fd3d9ab5b4.tar.bz2 lombok-5241235b99286243d02463adc7f8b0fd3d9ab5b4.zip |
[testing] add a test.javac16
Diffstat (limited to 'buildScripts')
-rw-r--r-- | buildScripts/tests.ant.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/buildScripts/tests.ant.xml b/buildScripts/tests.ant.xml index cdef471f..ae969ee3 100644 --- a/buildScripts/tests.ant.xml +++ b/buildScripts/tests.ant.xml @@ -126,10 +126,16 @@ 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. --> + <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> + <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> + <target name="test.javacCurrent" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using its javac as underlying compiler"> <echo>Running TestJavac on JVM${ant.java.version}, with the javac built into your VM distributon.</echo> <junit haltonfailure="yes" fork="true" forkmode="once"> |