diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2016-12-13 00:52:32 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-01-19 21:53:00 +0100 |
commit | b867f81b8a251a8a32e42f53c2be34d520938bd7 (patch) | |
tree | 2f1e248439cf2d0bf9cc6667f66aa8b073e004e7 /build.xml | |
parent | cc28ef24ecda90862b42df4fa3072b924bb8b5ab (diff) | |
download | lombok-b867f81b8a251a8a32e42f53c2be34d520938bd7.tar.gz lombok-b867f81b8a251a8a32e42f53c2be34d520938bd7.tar.bz2 lombok-b867f81b8a251a8a32e42f53c2be34d520938bd7.zip |
Lombok will now also fix the typemirror info when generating bean-related methods/constructors, to allow other annotation processors to see these generated methods/constructors too.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -797,7 +797,7 @@ You can also create your own by writing a 'testenvironment.properties' file. The <delete dir="build/useTestAp" quiet="true" /> <mkdir dir="build/useTestAp" /> - <javac source="1.7" target="1.7" destdir="build/useTestAp" includeantruntime="false"> + <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" /> @@ -809,7 +809,7 @@ You can also create your own by writing a 'testenvironment.properties' file. The <delete dir="build/useTestAp" quiet="true" /> <mkdir dir="build/useTestAp" /> - <javac source="1.7" target="1.7" destdir="build/useTestAp" includeantruntime="false"> + <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" /> |