-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule_untitled.xml
More file actions
78 lines (60 loc) · 3.18 KB
/
module_untitled.xml
File metadata and controls
78 lines (60 loc) · 3.18 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
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_untitled" default="compile.module.untitled">
<dirname property="module.untitled.basedir" file="${ant.file.module_untitled}"/>
<property name="module.jdk.home.untitled" value="${jdk.home.1.8}"/>
<property name="module.jdk.bin.untitled" value="${jdk.bin.1.8}"/>
<property name="module.jdk.classpath.untitled" value="jdk.classpath.1.8"/>
<property name="compiler.args.untitled" value="-encoding UTF-8 -source 1.6 ${compiler.args}"/>
<property name="untitled.output.dir" value="${module.untitled.basedir}/out/production/Untitled"/>
<property name="untitled.testoutput.dir" value="${module.untitled.basedir}/out/test/Untitled"/>
<path id="untitled.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="untitled.module.production.classpath">
<path refid="${module.jdk.classpath.untitled}"/>
</path>
<path id="untitled.runtime.production.module.classpath">
<pathelement location="${untitled.output.dir}"/>
</path>
<path id="untitled.module.classpath">
<path refid="${module.jdk.classpath.untitled}"/>
<pathelement location="${untitled.output.dir}"/>
</path>
<path id="untitled.runtime.module.classpath">
<pathelement location="${untitled.testoutput.dir}"/>
<pathelement location="${untitled.output.dir}"/>
</path>
<patternset id="excluded.from.module.untitled">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.untitled">
<patternset refid="excluded.from.module.untitled"/>
</patternset>
<path id="untitled.module.sourcepath">
<dirset dir="${module.untitled.basedir}">
<include name="src"/>
</dirset>
</path>
<target name="compile.module.untitled" depends="compile.module.untitled.production,compile.module.untitled.tests" description="Compile module Untitled"/>
<target name="compile.module.untitled.production" depends="register.custom.compilers" description="Compile module Untitled; production classes">
<mkdir dir="${untitled.output.dir}"/>
<javac2 destdir="${untitled.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.untitled}/javac">
<compilerarg line="${compiler.args.untitled}"/>
<bootclasspath refid="untitled.module.bootclasspath"/>
<classpath refid="untitled.module.production.classpath"/>
<src refid="untitled.module.sourcepath"/>
<patternset refid="excluded.from.compilation.untitled"/>
</javac2>
<copy todir="${untitled.output.dir}">
<fileset dir="${module.untitled.basedir}/src">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.untitled.tests" depends="register.custom.compilers,compile.module.untitled.production" description="compile module Untitled; test classes" unless="skip.tests"/>
<target name="clean.module.untitled" description="cleanup module">
<delete dir="${untitled.output.dir}"/>
<delete dir="${untitled.testoutput.dir}"/>
</target>
</project>