-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
23 lines (17 loc) · 676 Bytes
/
build.xml
File metadata and controls
23 lines (17 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project name="dis-timeintervaldataanalyzer-jdbc">
<include file="../tida-workspace/common-libs/ant-util/util-ant.xml"/>
<property name="testSuite" value="net.meisen.dissertation.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">
<do-run-test-suite testSuite="${testSuite}"/>
</target>
<target name="04-deploy" depends="02-compile-sources">
<build-jar />
</target>
</project>