-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexecasstdesktop.xml
More file actions
84 lines (72 loc) · 3.15 KB
/
execasstdesktop.xml
File metadata and controls
84 lines (72 loc) · 3.15 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
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="execasstdesktop" default="all">
<!-- Uncomment the following property if no tests compilation is needed -->
<!--
<property name="skip.tests" value="true"/>
-->
<!-- Compiler options -->
<property name="compiler.debug" value="on"/>
<property name="compiler.generate.no.warnings" value="off"/>
<property name="compiler.args" value=""/>
<property name="compiler.max.memory" value="128m"/>
<patternset id="compiler.excluded"/>
<patternset id="compiler.resources">
<include name="**/?*.properties"/>
<include name="**/?*.xml"/>
<include name="**/?*.gif"/>
<include name="**/?*.png"/>
<include name="**/?*.jpeg"/>
<include name="**/?*.jpg"/>
<include name="**/?*.html"/>
<include name="**/?*.dtd"/>
<include name="**/?*.tld"/>
</patternset>
<!-- JDK definitions -->
<property name="jdk.home.java_version_1.4.2_04" value="C:/j2sdk1.4.2_04"/>
<path id="jdk.classpath.java_version_1.4.2_04">
<fileset dir="${jdk.home.java_version_1.4.2_04}">
<include name="jre/lib/charsets.jar"/>
<include name="jre/lib/jce.jar"/>
<include name="jre/lib/jsse.jar"/>
<include name="jre/lib/plugin.jar"/>
<include name="jre/lib/rt.jar"/>
<include name="jre/lib/sunrsasign.jar"/>
<include name="jre/lib/ext/dnsns.jar"/>
<include name="jre/lib/ext/ldapsec.jar"/>
<include name="jre/lib/ext/localedata.jar"/>
<include name="jre/lib/ext/sunjce_provider.jar"/>
</fileset>
</path>
<property name="jdk.home.java_version_1.6.0" value="C:/Program Files/Java/jdk1.6.0"/>
<path id="jdk.classpath.java_version_1.6.0">
<fileset dir="${jdk.home.java_version_1.6.0}">
<include name="jre/lib/charsets.jar"/>
<include name="jre/lib/deploy.jar"/>
<include name="jre/lib/javaws.jar"/>
<include name="jre/lib/jce.jar"/>
<include name="jre/lib/jsse.jar"/>
<include name="jre/lib/management-agent.jar"/>
<include name="jre/lib/plugin.jar"/>
<include name="jre/lib/resources.jar"/>
<include name="jre/lib/rt.jar"/>
<include name="jre/lib/ext/dnsns.jar"/>
<include name="jre/lib/ext/localedata.jar"/>
<include name="jre/lib/ext/sunjce_provider.jar"/>
<include name="jre/lib/ext/sunmscapi.jar"/>
<include name="jre/lib/ext/sunpkcs11.jar"/>
</fileset>
</path>
<property name="project.jdk.home" value="${jdk.home.java_version_1.6.0}"/>
<property name="project.jdk.classpath" value="jdk.classpath.java_version_1.6.0"/>
<!-- Project Libraries -->
<!-- Global Libraries -->
<path id="library.j2sdk1.4.classpath">
<pathelement location="C:/j2sdk1.4.2_08"/>
</path>
<import file="${basedir}/module_execasstdesktop.xml"/>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.execasstdesktop" description="cleanup all"/>
<target name="all" depends="init, clean, compile.module.execasstdesktop" description="build all"/>
</project>