aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2011-11-01 00:13:22 +0100
committerRoel Spilker <r.spilker@gmail.com>2011-11-01 00:13:22 +0100
commita9f334fde93a0b07820962bff0b602ef0be731cf (patch)
tree4b330e1907f27d36a685cef0458cab7a65e6f2ec /build.xml
parent70f778daa560a899abe91a4908cd37c70ff1f3b4 (diff)
downloadlombok-a9f334fde93a0b07820962bff0b602ef0be731cf.tar.gz
lombok-a9f334fde93a0b07820962bff0b602ef0be731cf.tar.bz2
lombok-a9f334fde93a0b07820962bff0b602ef0be731cf.zip
Fixed issue 284 now also for java7, introduced more stubbing
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 0cd04dbb..82c861be 100644
--- a/build.xml
+++ b/build.xml
@@ -131,8 +131,12 @@ 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" />
+ <ivy:compile destdir="build/stubsstubs" source="1.5" target="1.5" includeantruntime="false">
+ <src path="src/stubsstubs" />
+ </ivy:compile>
<ivy:compile destdir="build/stubs" source="1.5" target="1.5" includeantruntime="false">
<src path="src/stubs" />
+ <classpath location="build/stubsstubs" />
</ivy:compile>
<ivy:compile destdir="build/lombok" source="1.5" target="1.5" includeantruntime="false">