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