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