-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.xml
117 lines (92 loc) · 3.55 KB
/
dependencies.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!-- ============================================================== -->
<patternset id="java.libs" includes="*.jar,*.zip" /> <!-- not recursing by design -->
<!-- ANT 1.4.x dependency: -->
<path id="boot.ant.14.classpath" >
<pathelement location="${build.target.ant.14.home}/lib/ant.jar" />
</path>
<!-- ANT 1.5.x dependency: -->
<path id="boot.ant.15.classpath" >
<pathelement location="${build.target.ant.15.home}/lib/ant.jar" />
</path>
<!-- J2SE 1.2 boot classpath: -->
<path id="boot.j2se.12.classpath" >
<fileset dir="${build.target.j2se.12.home}/lib/" >
<patternset refid="java.libs" />
</fileset>
</path>
<!-- J2SE 1.2 ext classpath: -->
<property name="ext.j2se.12.classpath"
value="${build.target.j2se.12.home}/lib/ext/"
/>
<!-- J2SE 1.3 boot classpath: -->
<path id="boot.j2se.13.classpath" >
<fileset dir="${build.target.j2se.13.home}/lib/" >
<patternset refid="java.libs" />
</fileset>
</path>
<!-- J2SE 1.3 ext classpath: -->
<property name="ext.j2se.13.classpath"
value="${build.target.j2se.13.home}/lib/ext/"
/>
<!-- J2SE 1.4 boot classpath: -->
<path id="boot.j2se.14.classpath" >
<fileset dir="${build.target.j2se.14.home}/lib/" >
<patternset refid="java.libs" />
</fileset>
</path>
<!-- J2SE 1.4 ext classpath: -->
<property name="ext.j2se.14.classpath"
value="${build.target.j2se.14.home}/lib/ext/"
/>
<!-- ============================================================== -->
<!-- lib module: -->
<!-- 3rd party dependencies: -->
<path id="lib.external.classpath" >
<fileset dir="${external.lib.dir}" >
<patternset refid="java.libs" />
</fileset>
</path>
<!-- internal dependencies: -->
<path id="lib.internal.classpath" >
<fileset dir="${internal.lib.dir}" >
<patternset refid="java.libs" />
</fileset>
</path>
<!-- complete dependency classpath: -->
<path id="lib.classpath" >
<path refid="lib.internal.classpath" />
<path refid="lib.external.classpath" />
</path>
<!-- ============================================================== -->
<!-- core module: -->
<!-- compiled module classes + res + lib.classpath: -->
<path id="core.classpath" >
<pathelement location="${core.classes.out.dir}" />
<pathelement location="${core.res.dir}" />
<path refid="lib.classpath" />
</path>
<!-- ============================================================== -->
<!-- ant module: -->
<!-- compiled module classes + res + +ant classpath + core.classpath: -->
<path id="ant.14.classpath" >
<pathelement location="${ant.classes.out.dir}" />
<pathelement location="${ant.res.dir}" />
<path refid="core.classpath" />
<path refid="boot.ant.14.classpath" />
</path>
<!-- compiled module classes + res + +ant classpath + core.classpath: -->
<path id="ant.15.classpath" >
<pathelement location="${ant.classes.out.dir}" />
<pathelement location="${ant.res.dir}" />
<path refid="core.classpath" />
<path refid="boot.ant.15.classpath" />
</path>
<!-- ============================================================== -->
<!-- tools module: -->
<!-- compiled module classes + res + core.classpath: -->
<path id="tools.classpath" >
<pathelement location="${tools.classes.out.dir}" />
<pathelement location="${tools.res.dir}" />
<path refid="core.classpath" />
</path>
<!-- ========== END OF FILE ======================================= -->