diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-07-24 00:27:26 +0200 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2020-07-24 00:27:36 +0200 |
commit | 18222922da969128bcf5a691bb08db0f150bfd1f (patch) | |
tree | a691bcb1b73a6b9c5ab648e388739a72a1563a57 | |
parent | 0cbea15caefc01c84e408a499879964f579cd150 (diff) | |
download | lombok-18222922da969128bcf5a691bb08db0f150bfd1f.tar.gz lombok-18222922da969128bcf5a691bb08db0f150bfd1f.tar.bz2 lombok-18222922da969128bcf5a691bb08db0f150bfd1f.zip |
[tests] command line 'ant test.eclipse' fixed
-rw-r--r-- | buildScripts/tests.ant.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildScripts/tests.ant.xml b/buildScripts/tests.ant.xml index d8559c5c..7b0ccb4e 100644 --- a/buildScripts/tests.ant.xml +++ b/buildScripts/tests.ant.xml @@ -151,6 +151,7 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn <echo>Running TestEclipse on eclipse-@{version} on JVM${ant.java.version}.</echo> <junit haltonfailure="yes" fork="true" forkmode="once"> <jvmarg value="-Xbootclasspath/a:${jdk8-rt.loc}" /> + <jvmarg value="-Ddelombok.bootclasspath=${jdk8-rt.loc}" /> <jvmarg value="-javaagent:dist/lombok.jar" /> <jvmarg line="${test.addopens}" /> <formatter type="plain" usefile="false" unless="tests.quiet" /> @@ -169,6 +170,7 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn </target> <target name="test.eclipse-202006" depends="test.compile" description="runs the tests on your default VM, testing the 2020-03 release of eclipse"> + <fetchdep.eclipse version="202006" /> <test.eclipse-X version="202006" /> </target> |