aboutsummaryrefslogtreecommitdiff
path: root/buildScripts/tests.ant.xml
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2023-01-11 23:00:03 +0100
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2023-01-11 23:00:03 +0100
commitc99e6bbeb513c51c68695dcc97fb683423205201 (patch)
treecab96ed84b904e13d4073e563b15f9c440598166 /buildScripts/tests.ant.xml
parent9388dbc1a990386dd7b3af6ac65e123f7cd89013 (diff)
downloadlombok-c99e6bbeb513c51c68695dcc97fb683423205201.tar.gz
lombok-c99e6bbeb513c51c68695dcc97fb683423205201.tar.bz2
lombok-c99e6bbeb513c51c68695dcc97fb683423205201.zip
Support JDK19:
Let lombok know where to find patcher-0.46, and retarget 'most recent supported JVM' to 19.
Diffstat (limited to 'buildScripts/tests.ant.xml')
-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 0191d642..00e9aeb2 100644
--- a/buildScripts/tests.ant.xml
+++ b/buildScripts/tests.ant.xml
@@ -1,5 +1,5 @@
<!--
- Copyright (C) 2020-2021 The Project Lombok Authors.
+ Copyright (C) 2020-2023 The Project Lombok Authors.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -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 6 month window. -->
-
<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.javac18" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac18 as underlying compiler">
- <test.javacX version="18" />
+ <!-- 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.javac19" depends="test.formatter.compile, test.compile" description="runs the tests on your default VM, using javac19 as underlying compiler">
+ <test.javacX version="19" />
</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.javac17, test.javac18, 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.javac19, test.eclipse-oxygen, test.eclipse-202006, test.eclipse-202006-jdk8" description="runs the tests against the default JVM, javac, and eclipse" />
</project>