-
Notifications
You must be signed in to change notification settings - Fork 4
/
module_pt_idaho.xml
72 lines (59 loc) · 3.51 KB
/
module_pt_idaho.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="module_pt_idaho" default="compile.module.pt_idaho">
<dirname property="module.pt_idaho.basedir" file="${ant.file.module_pt_idaho}"/>
<property name="module.jdk.home.pt_idaho" value="${project.jdk.home}"/>
<property name="module.jdk.classpath.pt_idaho" value="${project.jdk.classpath}"/>
<property name="compiler.args.pt_idaho" value="${compiler.args}"/>
<property name="pt_idaho.output.dir" value="${module.pt_idaho.basedir}/build/classes"/>
<property name="pt_idaho.testoutput.dir" value="${module.pt_idaho.basedir}/build/classes"/>
<path id="pt_idaho.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="pt_idaho.module.classpath">
<path refid="${module.jdk.classpath.pt_idaho}"/>
<pathelement location="${common-base.output.dir}"/>
<pathelement location="${module.pt_idaho.basedir}/../../third-party/logging-log4j-1.2.9/log4j-1.2.9.jar"/>
<pathelement location="${module.pt_idaho.basedir}/../../third-party/jnativeaccess/jna-4.0.0.jar"/>
<pathelement location="${module.pt_idaho.basedir}/../../cmf/common-base/lib/junit-4.1.jar"/>
<pathelement location="${module.pt_idaho.basedir}/../../cmf/common-base/lib/dxml.jar"/>
<pathelement location="${module.pt_idaho.basedir}/../../cmf/common-base/lib/or124.jar"/>
<pathelement location="${module.pt_idaho.basedir}/../../cmf/common-base/lib/dx.jar"/>
<pathelement location="${module.pt_idaho.basedir}/../../cmf/common-base/lib/cajo.jar"/>
<pathelement location="${module.pt_idaho.basedir}/../../cmf/common-base/lib/omx.jar"/>
<pathelement location="${common-daf-v2.output.dir}"/>
<pathelement location="${utils.output.dir}"/>
<pathelement location="${reference.output.dir}"/>
<pathelement location="${censusdata.output.dir}"/>
</path>
<patternset id="excluded.from.module.pt_idaho"/>
<patternset id="excluded.from.compilation.pt_idaho">
<patternset refid="excluded.from.module.pt_idaho"/>
<patternset refid="compiler.excluded"/>
</patternset>
<path id="pt_idaho.module.sourcepath">
<dirset dir="${module.pt_idaho.basedir}">
<include name="src/java"/>
</dirset>
</path>
<target name="compile.module.pt_idaho" depends="compile.module.common-base, compile.module.common-daf-v2, compile.module.utils, compile.module.reference, compile.module.censusdata" description="compile module pt_idaho production classes">
<mkdir dir="${pt_idaho.output.dir}"/>
<javac destdir="${pt_idaho.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memoryMaximumSize="${compiler.max.memory}" fork="true" executable="${module.jdk.home.pt_idaho}/bin/javac">
<compilerarg line="${compiler.args.pt_idaho}"/>
<bootclasspath refid="pt_idaho.module.bootclasspath"/>
<classpath refid="pt_idaho.module.classpath"/>
<src refid="pt_idaho.module.sourcepath"/>
<patternset refid="excluded.from.compilation.pt_idaho"/>
</javac>
<copy todir="${pt_idaho.output.dir}">
<fileset dir="${module.pt_idaho.basedir}/src/java">
<patternset refid="compiler.resources"/>
<type type="file"/>
<patternset refid="excluded.from.compilation.pt_idaho"/>
</fileset>
</copy>
</target>
<target name="clean.module.pt_idaho" description="cleanup module">
<delete dir="${pt_idaho.output.dir}"/>
<delete dir="${pt_idaho.testoutput.dir}"/>
</target>
</project>