diff options
author | Roel Spilker <r.spilker@gmail.com> | 2011-11-01 00:13:22 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2011-11-01 00:13:22 +0100 |
commit | a9f334fde93a0b07820962bff0b602ef0be731cf (patch) | |
tree | 4b330e1907f27d36a685cef0458cab7a65e6f2ec /build.xml | |
parent | 70f778daa560a899abe91a4908cd37c70ff1f3b4 (diff) | |
download | lombok-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.xml | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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"> |