-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.xml
More file actions
50 lines (37 loc) · 1.55 KB
/
build.xml
File metadata and controls
50 lines (37 loc) · 1.55 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0"?>
<!DOCTYPE project [
<!ENTITY properties SYSTEM "cmf/common-base/config/properties.xml">
<!ENTITY targets SYSTEM "cmf/common-base/config/targets.xml">
]>
<project name="mtctm2" default="usage" basedir=".">
&properties;
&targets;
<!-- ********************************************************* -->
<!-- Setup the classpath -->
<path id="compile.classpath">
<pathelement location="${build.classes.dir}"/>
<pathelement location="${common-base.dir}/build/classes"/>
<pathelement location="${common-base.dir}/config"/>
<fileset dir="${jppf.dir}">
<include name="**/JPPF/build/*.jar"/>
</fileset>
<fileset dir="${thirdParty.dir}">
<include name="**/logging-log4j-1.2.9/*.jar"/>
<include name="**/cajo/*.jar"/>
<include name="**/jexcelapi/*.jar"/>
<include name="**/ssj/lib/*.jar"/>
<include name="**/poi/*.jar"/>
</fileset>
</path>
<!-- ********************************************************* -->
<!-- Compile dependencies -->
<target name="pre-build" depends="">
<ant dir="${common-base.dir}" target="all" inheritAll="false"/>
</target>
<!-- ********************************************************* -->
<!-- Create a set of jar files for release -->
<target name="release" depends="makejar">
<!-- copy dependencies to release directory -->
<copy file="${common-base.dir}/release/common-base.jar" todir="${release.dir}"/>
</target>
</project>