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