diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-15 22:59:49 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2010-08-15 22:59:49 +0200 |
commit | 240473a6c214679362bb3544ea414716f4c2062a (patch) | |
tree | e06ebd0e412cd8454ad1649d94c5e0919c4fa76e /build.xml | |
parent | 81cfc844b90d347c01ec9e68dcd7554a75caa733 (diff) | |
parent | 4c23804837e854c4f4ebb0008b10241467550d3f (diff) | |
download | lombok-240473a6c214679362bb3544ea414716f4c2062a.tar.gz lombok-240473a6c214679362bb3544ea414716f4c2062a.tar.bz2 lombok-240473a6c214679362bb3544ea414716f4c2062a.zip |
Merge branch 'postProcess'
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -171,6 +171,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <srcdir dir="experimental/src" /> <srcdir dir="test/transform/src" /> <srcdir dir="test/core/src" /> + <srcdir dir="test/bytecode/src" /> <conf name="build" sources="contrib" /> <conf name="test" sources="contrib" /> <settings> @@ -208,6 +209,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <classpath path="build/lombok" /> <src path="test/core/src" /> <src path="test/transform/src" /> + <src path="test/bytecode/src" /> </ivy:compile> <copy todir="build/tests"> <fileset dir="test/pretty/resource" /> @@ -228,6 +230,9 @@ the common tasks and can be called on to run the main aspects of all the sub-scr <fileset dir="test/transform/src"> <include name="**/Test*.java" /> </fileset> + <fileset dir="test/bytecode/src"> + <include name="**/Test*.java" /> + </fileset> </batchtest> </junit> <echo level="info">All tests successful.</echo> |