-
Notifications
You must be signed in to change notification settings - Fork 104
/
build-master.xml
36 lines (29 loc) · 1.44 KB
/
build-master.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" encoding="UTF-8"?>
<!-- ======================================================================
Dec 1, 2008 9:17:50 PM
Build Master
TCSDEVELOPER
====================================================================== -->
<project name="tools.master">
<description>
The master build scripts defines useful targets and tasks to manage multiple subprojects.
</description>
<dirname file="${ant.file.tools.master}" property="tools.master.basedir"/>
<!-- path to the property file containing subproject definitions, default to 'projects.properties' -->
<condition property="subprojects.conf" value="${basedir}/subprojects.xml">
<not>
<isset property="subprojects.conf"/>
</not>
</condition>
<path id="script.path">
<pathelement location="${tools.master.basedir}/lib/groovy-all-1.5.7.jar"/>
</path>
<path id="svn.path">
<fileset dir="${tools.master.basedir}/lib/third_party/svnant">
<include name="*.jar"/>
</fileset>
</path>
<import file="${tools.master.basedir}/build-master-tasks.xml"/>
<import file="${tools.master.basedir}/build-master-utils.xml"/>
<import file="${tools.master.basedir}/build-master-targets.xml"/>
</project>