diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-01-19 23:33:57 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-01-19 23:33:57 +0100 |
commit | 5a7f02ca05ecfdd3578b2133de7d66ba7a745b1d (patch) | |
tree | 90935a758faa2e7c474e2b14e7486932f3f5a841 /build.xml | |
parent | 5cbdd357446b0805d337c0b96933a54b50570a3e (diff) | |
download | lombok-5a7f02ca05ecfdd3578b2133de7d66ba7a745b1d.tar.gz lombok-5a7f02ca05ecfdd3578b2133de7d66ba7a745b1d.tar.bz2 lombok-5a7f02ca05ecfdd3578b2133de7d66ba7a745b1d.zip |
Added support for MapStructu’s AstModifyingAnnotationProcessor SPI system. Also removed log statements.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -143,6 +143,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr anymore until you 'ant clean'. That's very much not desired, so we kill the processor, which stops lombok from running. We re-create the file at the end of this target. --> <delete file="build/lombok/META-INF/services/javax.annotation.processing.Processor" quiet="true" /> + <delete file="build/lombok/META-INF/services/org.mapstruct.ap.spi.AstModifyingAnnotationProcessor" quiet="true" /> <ivy:compile destdir="build/stubsstubs" source="1.5" target="1.5" includeantruntime="false"> <compilerarg value="-Xbootclasspath/p:lib/openJDK6Environment/rt-openjdk6.jar" /> <src path="src/stubsstubs" /> @@ -228,6 +229,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <mkdir dir="build/lombok/META-INF/services" /> <echo file="build/lombok/META-INF/services/javax.annotation.processing.Processor">lombok.launch.AnnotationProcessorHider$AnnotationProcessor lombok.launch.AnnotationProcessorHider$ClaimingProcessor</echo> + <echo file="build/lombok/META-INF/services/org.mapstruct.ap.spi.AstModifyingAnnotationProcessor">lombok.launch.AnnotationProcessorHider$AstModificationNotifier</echo> </target> <target name="dist" description="Builds THE lombok.jar file which contains everything." depends="version, compile"> |