-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule_ilab.xml
More file actions
56 lines (40 loc) · 2.17 KB
/
module_ilab.xml
File metadata and controls
56 lines (40 loc) · 2.17 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
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_ilab" default="compile.module.ilab">
<dirname property="module.ilab.basedir" file="${ant.file.module_ilab}"/>
<property name="module.jdk.home.ilab" value="${project.jdk.home}"/>
<property name="module.jdk.bin.ilab" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.ilab" value="${project.jdk.classpath}"/>
<property name="compiler.args.ilab" value="-encoding UTF-8 -source 1.7 -target 1.7 ${compiler.args}"/>
<property name="ilab.output.dir" value="${module.ilab.basedir}/build/classes/production/Ilab"/>
<property name="ilab.testoutput.dir" value="${module.ilab.basedir}/build/classes/test/Ilab"/>
<path id="ilab.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="ilab.module.production.classpath">
<path refid="${module.jdk.classpath.ilab}"/>
</path>
<path id="ilab.runtime.production.module.classpath">
<pathelement location="${ilab.output.dir}"/>
</path>
<path id="ilab.module.classpath">
<path refid="${module.jdk.classpath.ilab}"/>
<pathelement location="${ilab.output.dir}"/>
</path>
<path id="ilab.runtime.module.classpath">
<pathelement location="${ilab.testoutput.dir}"/>
<pathelement location="${ilab.output.dir}"/>
</path>
<patternset id="excluded.from.module.ilab">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.ilab">
<patternset refid="excluded.from.module.ilab"/>
</patternset>
<target name="compile.module.ilab" depends="compile.module.ilab.production,compile.module.ilab.tests" description="Compile module Ilab"/>
<target name="compile.module.ilab.production" depends="register.custom.compilers" description="Compile module Ilab; production classes"/>
<target name="compile.module.ilab.tests" depends="register.custom.compilers,compile.module.ilab.production" description="compile module Ilab; test classes" unless="skip.tests"/>
<target name="clean.module.ilab" description="cleanup module">
<delete dir="${ilab.output.dir}"/>
<delete dir="${ilab.testoutput.dir}"/>
</target>
</project>