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