diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-07-17 22:32:24 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-07-17 22:36:32 +0200 |
commit | a195a47337f592eb117f519f7a1a42f0d8f570d1 (patch) | |
tree | 7b9a30568735d3a3afb10dd30a67c7118c3ac682 /build.xml | |
parent | 0375f1a9e8f606588d4e136fc718a6876ff0ae4f (diff) | |
download | lombok-a195a47337f592eb117f519f7a1a42f0d8f570d1.tar.gz lombok-a195a47337f592eb117f519f7a1a42f0d8f570d1.tar.bz2 lombok-a195a47337f592eb117f519f7a1a42f0d8f570d1.zip |
Attempting to fix issues with integration with mapstruct; issue #1359
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -261,7 +261,8 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <src path="src/j9stubs" /> <!-- This includes org.mapstruct.ap.spi.AstModifyingAnnotationProcessor; putting this on the classpath doesn't work (needs to be internal or a module) so we just add it and then delete the class file for convenience. --> </ivy:compile> - <delete file="build/lombok/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.class" /> + <mkdir dir="build/lombok/secondaryLoading.SCL.lombok/org/mapstruct/ap/spi" /> + <move file="build/lombok/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.class" tofile="build/lombok/secondaryLoading.SCL.lombok/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.SCL.lombok" /> <ivy:compile destdir="build/lombok/Class50" source="1.5" target="1.6" ecj="true" nowarn="true" includeSystemBootclasspath="true"> <bootclasspath location="build/stubs" /> |