diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-05-07 00:08:49 +0200 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-05-07 00:08:49 +0200 |
commit | 42f36e66fec9554205ed7caaab33c1c7be0db90b (patch) | |
tree | a0b1034dbbec38cc2326ae32741dafe5e3efba4b /build.xml | |
parent | e69a991fcb141fb24de8afb433c753d35821b1c3 (diff) | |
download | lombok-42f36e66fec9554205ed7caaab33c1c7be0db90b.tar.gz lombok-42f36e66fec9554205ed7caaab33c1c7be0db90b.tar.bz2 lombok-42f36e66fec9554205ed7caaab33c1c7be0db90b.zip |
[fixes #1981][fixes #1961] Hardcoded some knowledge about how to copy jackson’s `@JsonProperty`.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -400,6 +400,7 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor,isolating</echo> <srcdir dir="test/core/src" test="true" /> <srcdir dir="test/bytecode/src" test="true" /> <srcdir dir="test/configuration/src" test="true" /> + <srcdir dir="test/stubs" test="true" /> </module> <settings> <url url="https://projectlombok.org/downloads/lombok.intellij.settings" /> @@ -432,6 +433,7 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor,isolating</echo> <srcdir dir="test/core/src" /> <srcdir dir="test/bytecode/src" /> <srcdir dir="test/configuration/src" /> + <srcdir dir="test/stubs" /> <conf name="${eclipse.build.configname}" sources="contrib" /> <conf name="test" sources="contrib" /> <local org="org.projectlombok" name="lombok.patcher" dir="../lombok.patcher" /> @@ -551,6 +553,10 @@ ${sourceWarning}</echo> <src path="test/bytecode/src" /> <src path="test/configuration/src" /> </ivy:compile> + <mkdir dir="build/teststubs" /> + <ivy:compile destdir="build/teststubs" source="1.6" target="1.6" ecj="true" nowarn="true"> + <src path="test/stubs" /> + </ivy:compile> </target> <target name="test-ecj" depends="dist, contrib, setupJavaOracle8TestEnvironment" unless="tests.skip"> @@ -728,6 +734,7 @@ You can also create your own by writing a 'testenvironment.properties' file. The <classpath path="${test.location.javac}" /> <classpath path="build/lombok" /> <classpath path="build/tests" /> + <classpath path="build/teststubs" /> <batchtest> <fileset dir="test/core/src"> <include name="lombok/RunAllTests.java" /> @@ -747,6 +754,7 @@ You can also create your own by writing a 'testenvironment.properties' file. The <classpath path="${test.location.javac}" /> <classpath path="build/lombok" /> <classpath path="build/tests" /> + <classpath path="build/teststubs" /> <batchtest> <fileset dir="test/core/src"> <include name="lombok/RunAllTests.java" /> |