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