forked from cltl/KafSaxParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule_kyotokafsaxparser.xml
78 lines (60 loc) · 3.66 KB
/
module_kyotokafsaxparser.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
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_kyotokafsaxparser" default="compile.module.kyotokafsaxparser">
<dirname property="module.kyotokafsaxparser.basedir" file="${ant.file.module_kyotokafsaxparser}"/>
<property name="module.jdk.home.kyotokafsaxparser" value="${project.jdk.home}"/>
<property name="module.jdk.bin.kyotokafsaxparser" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.kyotokafsaxparser" value="${project.jdk.classpath}"/>
<property name="compiler.args.kyotokafsaxparser" value="-encoding UTF-8 -source 1.6 -target 1.6 ${compiler.args}"/>
<property name="kyotokafsaxparser.output.dir" value="${module.kyotokafsaxparser.basedir}/target/classes"/>
<property name="kyotokafsaxparser.testoutput.dir" value="${module.kyotokafsaxparser.basedir}/target/test-classes"/>
<path id="kyotokafsaxparser.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="kyotokafsaxparser.module.production.classpath">
<path refid="${module.jdk.classpath.kyotokafsaxparser}"/>
</path>
<path id="kyotokafsaxparser.runtime.production.module.classpath">
<pathelement location="${kyotokafsaxparser.output.dir}"/>
</path>
<path id="kyotokafsaxparser.module.classpath">
<path refid="${module.jdk.classpath.kyotokafsaxparser}"/>
<pathelement location="${kyotokafsaxparser.output.dir}"/>
</path>
<path id="kyotokafsaxparser.runtime.module.classpath">
<pathelement location="${kyotokafsaxparser.testoutput.dir}"/>
<pathelement location="${kyotokafsaxparser.output.dir}"/>
</path>
<patternset id="excluded.from.module.kyotokafsaxparser">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.kyotokafsaxparser">
<patternset refid="excluded.from.module.kyotokafsaxparser"/>
</patternset>
<path id="kyotokafsaxparser.module.sourcepath">
<dirset dir="${module.kyotokafsaxparser.basedir}">
<include name="src/main/java"/>
</dirset>
</path>
<target name="compile.module.kyotokafsaxparser" depends="compile.module.kyotokafsaxparser.production,compile.module.kyotokafsaxparser.tests" description="Compile module KyotoKafSaxParser"/>
<target name="compile.module.kyotokafsaxparser.production" depends="register.custom.compilers" description="Compile module KyotoKafSaxParser; production classes">
<mkdir dir="${kyotokafsaxparser.output.dir}"/>
<javac2 destdir="${kyotokafsaxparser.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.kyotokafsaxparser}/javac">
<compilerarg line="${compiler.args.kyotokafsaxparser}"/>
<bootclasspath refid="kyotokafsaxparser.module.bootclasspath"/>
<classpath refid="kyotokafsaxparser.module.production.classpath"/>
<src refid="kyotokafsaxparser.module.sourcepath"/>
<patternset refid="excluded.from.compilation.kyotokafsaxparser"/>
</javac2>
<copy todir="${kyotokafsaxparser.output.dir}">
<fileset dir="${module.kyotokafsaxparser.basedir}/src/main/java">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.kyotokafsaxparser.tests" depends="register.custom.compilers,compile.module.kyotokafsaxparser.production" description="compile module KyotoKafSaxParser; test classes" unless="skip.tests"/>
<target name="clean.module.kyotokafsaxparser" description="cleanup module">
<delete dir="${kyotokafsaxparser.output.dir}"/>
<delete dir="${kyotokafsaxparser.testoutput.dir}"/>
</target>
</project>