-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
28 lines (22 loc) · 962 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project name="gen-sbconfigurator" default="assemble">
<include file="../tida-workspace/common-libs/ant-util/util-ant.xml"/>
<property name="testSuite" value="net.meisen.general.sbconfigurator.AllTests"/>
<target name="01-resolve-dependencies">
<resolve-dependencies/>
</target>
<target name="02-compile-sources" depends="01-resolve-dependencies">
<do-compile-java-default/>
</target>
<target name="03-run-test-suite" depends="02-compile-sources">
<!--
the working directory must be changed, so that the beans aren't loaded twice,
once from the classpath and once from the test-source directory
-->
<do-run-test-suite workDir="./resources" testSuite="${testSuite}"/>
</target>
<target name="04-deploy" depends="02-compile-sources">
<build-jar/>
<build-test-jar/>
</target>
</project>