-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule_iso_test.xml
56 lines (40 loc) · 2.31 KB
/
module_iso_test.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
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_iso_test" default="compile.module.iso_test">
<dirname property="module.iso_test.basedir" file="${ant.file.module_iso_test}"/>
<property name="module.jdk.home.iso_test" value="${project.jdk.home}"/>
<property name="module.jdk.bin.iso_test" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.iso_test" value="${project.jdk.classpath}"/>
<property name="compiler.args.iso_test" value="-encoding UTF-8 -source 1.7 -target 1.7 ${compiler.args}"/>
<property name="iso_test.output.dir" value="${module.iso_test.basedir}/classes/production/iso_test"/>
<property name="iso_test.testoutput.dir" value="${module.iso_test.basedir}/classes/test/iso_test"/>
<path id="iso_test.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="iso_test.module.production.classpath">
<path refid="${module.jdk.classpath.iso_test}"/>
</path>
<path id="iso_test.runtime.production.module.classpath">
<pathelement location="${iso_test.output.dir}"/>
</path>
<path id="iso_test.module.classpath">
<path refid="${module.jdk.classpath.iso_test}"/>
<pathelement location="${iso_test.output.dir}"/>
</path>
<path id="iso_test.runtime.module.classpath">
<pathelement location="${iso_test.testoutput.dir}"/>
<pathelement location="${iso_test.output.dir}"/>
</path>
<patternset id="excluded.from.module.iso_test">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.iso_test">
<patternset refid="excluded.from.module.iso_test"/>
</patternset>
<target name="compile.module.iso_test" depends="compile.module.iso_test.production,compile.module.iso_test.tests" description="Compile module iso_test"/>
<target name="compile.module.iso_test.production" depends="register.custom.compilers" description="Compile module iso_test; production classes"/>
<target name="compile.module.iso_test.tests" depends="register.custom.compilers,compile.module.iso_test.production" description="compile module iso_test; test classes" unless="skip.tests"/>
<target name="clean.module.iso_test" description="cleanup module">
<delete dir="${iso_test.output.dir}"/>
<delete dir="${iso_test.testoutput.dir}"/>
</target>
</project>