aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 847d9056..d640acc8 100644
--- a/build.xml
+++ b/build.xml
@@ -247,6 +247,7 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<srcdir dir="test/transform/src" test="true" />
<srcdir dir="test/core/src" test="true" />
<srcdir dir="test/bytecode/src" test="true" />
+ <srcdir dir="test/configuration/src" test="true" />
</module>
<settings>
<url url="http://projectlombok.org/downloads/lombok.intellij.settings" />
@@ -275,9 +276,10 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<srcdir dir="test/transform/src" />
<srcdir dir="test/core/src" />
<srcdir dir="test/bytecode/src" />
- <local org="org.projectlombok" name="lombok.patcher" dir="../lombok.patcher" />
+ <srcdir dir="test/configuration/src" />
<conf name="${eclipse.build.configname}" sources="contrib" />
<conf name="test" sources="contrib" />
+ <local org="org.projectlombok" name="lombok.patcher" dir="../lombok.patcher" />
<settings>
<url url="http://projectlombok.org/downloads/lombok.eclipse.settings" />
</settings>
@@ -320,6 +322,8 @@ the common tasks and can be called on to run the main aspects of all the sub-scr
<antcall target="-augmentClasspath"><param name="pluginName" value="org.eclipse.osgi" /></antcall>
<antcall target="-augmentClasspath"><param name="pluginName" value="org.eclipse.jdt.core" /></antcall>
<antcall target="-augmentClasspath"><param name="pluginName" value="org.eclipse.jdt.ui" /></antcall>
+ <antcall target="-augmentClasspath"><param name="pluginName" value="org.eclipse.core.resources" /></antcall>
+ <antcall target="-augmentClasspath"><param name="pluginName" value="org.eclipse.core.jobs" /></antcall>
<!-- These are merely useful -->
<antcall target="-augmentClasspath"><param name="pluginName" value="org.eclipse.text" /></antcall>
@@ -387,10 +391,12 @@ ${sourceWarning}</echo>
<src path="test/core/src" />
<src path="test/transform/src" />
<src path="test/bytecode/src" />
+ <src path="test/configuration/src" />
</ivy:compile>
<copy todir="build/tests">
<fileset dir="test/pretty/resource" />
<fileset dir="test/transform/resource" />
+ <fileset dir="test/configuration/resource" />
</copy>
</target>
@@ -521,6 +527,9 @@ You can also create your own by writing a 'testenvironment.properties' file. The
<fileset dir="test/bytecode/src">
<include name="**/Test*.java" />
</fileset>
+ <fileset dir="test/configuration/src">
+ <include name="**/Test*.java" />
+ </fileset>
</batchtest>
</junit>
<echo level="info">All tests successful.</echo>