forked from SoftwareAG/sagdevops-ci-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
29 lines (22 loc) · 940 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
29
<?xml version="1.0"?>
<project name="Build and Deploy Solution" default="buildDeployTest" basedir="." >
<property file="${project.properties}"/>
<property file="System.properties"/>
<import file="buildInitProject.xml"/>
<import file="buildCallABE.xml"/>
<import file="buildDeployer.xml"/>
<import file="buildTest.xml"/>
<taskdef classpath="lib/ant-contrib.jar" resource="net/sf/antcontrib/antlib.xml"/>
<target name="build" depends="initProject,buildWM">
<description>Build project.</description>
</target>
<target name="deploy" depends="initProject,deployWM">
<description>Deploy project.</description>
</target>
<target name="test" depends="initProject,startTest">
<description>Run tests.</description>
</target>
<target name="buildDeployTest" depends="build, deploy, test">
<description>Build and deploy the project.</description>
</target>
</project>