aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml53
1 files changed, 53 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index a4f22545..f20973cf 100644
--- a/build.xml
+++ b/build.xml
@@ -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">
@@ -305,6 +307,7 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor</echo>
<srcdir dir="src/installer" />
<srcdir dir="src/delombok" />
<srcdir dir="src/stubs" />
+ <srcdir dir="src/testAP" />
<srcdir dir="experimental/src" />
<srcdir dir="test/transform/src" test="true" />
<srcdir dir="test/core/src" test="true" />
@@ -335,6 +338,7 @@ lombok.launch.AnnotationProcessorHider$ClaimingProcessor</echo>
<srcdir dir="src/installer" />
<srcdir dir="src/delombok" />
<srcdir dir="src/stubs" />
+ <srcdir dir="src/testAP" />
<srcdir dir="experimental/src" />
<srcdir dir="test/transform/src" />
<srcdir dir="test/core/src" />
@@ -766,4 +770,53 @@ You can also create your own by writing a 'testenvironment.properties' file. The
<property name="ssh.keyfile" value="${ssh.keyfile}" />
</ant>
</target>
+
+ <target name="testAp-compile" depends="ensureBuildDeps">
+ <delete file="build/testAP/META-INF/services/javax.annotation.processing.Processor" quiet="true" />
+ <ivy:compile destdir="build/testAP" source="1.7" target="1.7" includeantruntime="false">
+ <src path="src/testAP" />
+ </ivy:compile>
+
+ <mkdir dir="build/testAP/META-INF" />
+ <mkdir dir="build/testAP/META-INF/services" />
+ <echo file="build/testAP/META-INF/services/javax.annotation.processing.Processor">org.projectlombok.testAp.TestAp</echo>
+ </target>
+
+ <target name="testAp-dist" depends="testAp-compile">
+ <mkdir dir="dist" />
+ <tstamp>
+ <format property="releaseTimestamp" pattern="yyyy-MM-dd" />
+ </tstamp>
+ <zip destfile="dist/testAp-${releaseTimestamp}.jar">
+ <fileset dir="." includes="LICENSE" />
+ <fileset dir="build/testAp" />
+ </zip>
+ <copy file="dist/testAp-${releaseTimestamp}.jar" tofile="dist/testAp.jar" />
+ </target>
+
+ <target name="testAp" depends="testAp-dist, dist">
+ <echo>Running in order: First Lombok, Then testAP</echo>
+
+ <delete dir="build/useTestAp" quiet="true" />
+ <mkdir dir="build/useTestAp" />
+ <javac verbose="false" source="1.7" target="1.7" destdir="build/useTestAp" includeantruntime="false">
+ <src path="src/useTestAP" />
+ <classpath location="dist/lombok.jar" />
+ <classpath location="dist/testAp.jar" />
+ <compilerarg value="-processor" />
+ <compilerarg value="lombok.launch.AnnotationProcessorHider$AnnotationProcessor,org.projectlombok.testAp.TestAp" />
+ </javac>
+
+ <echo>Running in order: First TestAP, Then Lombok</echo>
+
+ <delete dir="build/useTestAp" quiet="true" />
+ <mkdir dir="build/useTestAp" />
+ <javac verbose="false" source="1.7" target="1.7" destdir="build/useTestAp" includeantruntime="false">
+ <src path="src/useTestAP" />
+ <classpath location="dist/lombok.jar" />
+ <classpath location="dist/testAp.jar" />
+ <compilerarg value="-processor" />
+ <compilerarg value="org.projectlombok.testAp.TestAp,lombok.launch.AnnotationProcessorHider$AnnotationProcessor" />
+ </javac>
+ </target>
</project>