-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule_client-project.xml
More file actions
89 lines (71 loc) · 4.23 KB
/
Copy pathmodule_client-project.xml
File metadata and controls
89 lines (71 loc) · 4.23 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
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_client-project" default="compile.module.client-project">
<dirname property="module.client-project.basedir" file="${ant.file.module_client-project}"/>
<property name="module.jdk.home.client-project" value="${project.jdk.home}"/>
<property name="module.jdk.bin.client-project" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.client-project" value="${project.jdk.classpath}"/>
<property name="compiler.args.client-project" value="-encoding UTF-8 -source 8 -target 8 ${compiler.args}"/>
<property name="client-project.output.dir" value="${module.client-project.basedir}/bin"/>
<property name="client-project.testoutput.dir" value="${module.client-project.basedir}/bin"/>
<path id="client-project.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="client-project.module.production.classpath">
<path refid="${module.jdk.classpath.client-project}"/>
<pathelement location="${basedir}/ExternalJars/activation.jar"/>
<pathelement location="${basedir}/ExternalJars/itextpdf-5.5.13.jar"/>
<pathelement location="${basedir}/ExternalJars/javax.mail.jar"/>
</path>
<path id="client-project.runtime.production.module.classpath">
<pathelement location="${client-project.output.dir}"/>
<pathelement location="${basedir}/ExternalJars/activation.jar"/>
<pathelement location="${basedir}/ExternalJars/itextpdf-5.5.13.jar"/>
<pathelement location="${basedir}/ExternalJars/javax.mail.jar"/>
</path>
<path id="client-project.module.classpath">
<pathelement location="${client-project.output.dir}"/>
<path refid="${module.jdk.classpath.client-project}"/>
<pathelement location="${basedir}/ExternalJars/activation.jar"/>
<pathelement location="${basedir}/ExternalJars/itextpdf-5.5.13.jar"/>
<pathelement location="${basedir}/ExternalJars/javax.mail.jar"/>
</path>
<path id="client-project.runtime.module.classpath">
<pathelement location="${client-project.output.dir}"/>
<pathelement location="${basedir}/ExternalJars/activation.jar"/>
<pathelement location="${basedir}/ExternalJars/itextpdf-5.5.13.jar"/>
<pathelement location="${basedir}/ExternalJars/javax.mail.jar"/>
</path>
<patternset id="excluded.from.module.client-project">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.client-project">
<patternset refid="excluded.from.module.client-project"/>
</patternset>
<path id="client-project.module.sourcepath">
<dirset dir="${module.client-project.basedir}">
<include name="src"/>
</dirset>
</path>
<target name="compile.module.client-project" depends="compile.module.client-project.production,compile.module.client-project.tests" description="Compile module Client-Project"/>
<target name="compile.module.client-project.production" depends="register.custom.compilers" description="Compile module Client-Project; production classes">
<mkdir dir="${client-project.output.dir}"/>
<javac2 destdir="${client-project.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.client-project}/javac">
<compilerarg line="${compiler.args.client-project}"/>
<bootclasspath refid="client-project.module.bootclasspath"/>
<classpath refid="client-project.module.production.classpath"/>
<src refid="client-project.module.sourcepath"/>
<patternset refid="excluded.from.compilation.client-project"/>
</javac2>
<copy todir="${client-project.output.dir}">
<fileset dir="${module.client-project.basedir}/src">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.client-project.tests" depends="register.custom.compilers,compile.module.client-project.production" description="compile module Client-Project; test classes" unless="skip.tests"/>
<target name="clean.module.client-project" description="cleanup module">
<delete dir="${client-project.output.dir}"/>
<delete dir="${client-project.testoutput.dir}"/>
</target>
</project>