-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclasspath.xml
81 lines (70 loc) · 2.74 KB
/
classpath.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
<project name="classpath" basedir=".">
<!-- Log4J - - >
<property name="log4j.version" value="1.2.15" />
<property name="log4j.home" location="${common.lib}/log4j/${log4j.version}" />
<path id="log4j.classpath">
<pathelement location="${log4j.home}/log4j-${log4j.version}.jar" />
</path>
<! - - jdbc-sqlite - - >
<property name="jdbc-sqlite.version" value="0.5.6" />
<property name="jdbc-sqlite.home" location="${common.lib}/jdbc/sqlite/${jdbc-sqlite.version}" />
<path id="jdbc-sqlite.classpath">
<fileset dir="${jdbc-sqlite.home}" includes="*.jar"/>
</path>
-->
<!-- Substance - - >
<property name="substance.version" value="5.0" />
<property name="substance.home" location="${common.lib}/substance/${substance.version}" />
<path id="substance.classpath">
<fileset dir="${substance.home}" includes="*.jar"/>
</path>
-->
<!-- JGoodies bindings - - >
<property name="jgoodies-bindings.version" value="2.0.6" />
<property name="jgoodies-bindings.home" location="${common.lib}/jgoodies/binding/${jgoodies-bindings.version}" />
<path id="jgoodies-bindings.classpath">
<fileset dir="${jgoodies-bindings.home}" includes="**/*.jar"/>
</path>
-->
<!-- JGoodies looks - - >
<property name="jgoodies-looks.version" value="2.2.1" />
<property name="jgoodies-looks.home" location="${common.lib}/jgoodies/looks/${jgoodies-looks.version}" />
<path id="jgoodies-looks.classpath">
<fileset dir="${jgoodies-looks.home}" includes="**/*.jar"/>
</path>
-->
<!-- JGoodies forms - - >
<property name="jgoodies-forms.version" value="1.2.1" />
<property name="jgoodies-forms.home" location="${common.lib}/jgoodies/forms/${jgoodies-forms.version}" />
<path id="jgoodies-forms.classpath">
<fileset dir="${jgoodies-forms.home}" includes="**/*.jar"/>
</path>
-->
<!-- SwingX - - >
<property name="swingx.version" value="0.9.5" />
<property name="swingx.home" location="${common.lib}/swingx/${swingx.version}" />
<path id="swingx.classpath">
<fileset dir="${swingx.home}" includes="**/*.jar"/>
</path>
-->
<!-- Findbugs -->
<property name="findbugs.home" location="${common.lib}/findbugs/1.3.7" />
<path id="findbugs.classpath">
<fileset dir="${findbugs.home}" includes="**/*.jar" />
</path>
<!-- PMD -->
<property name="pmd.home" location="${common.lib}/pmd/4.2.5" />
<path id="pmd.classpath">
<fileset dir="${pmd.home}" includes="lib/*.jar" />
<path refid="findbugs.classpath"/>
</path>
<!-- JUnit -->
<property name="junit.home" location="${common.lib}/junit/4.8.1" />
<path id="junit.classpath">
<fileset dir="${junit.home}" includes="*.jar" />
</path>
<!--<property name="l2fprod.home" location="lib/l2fprod"/>
<path id="l2fprod.classpath">
<fileset dir="${l2fprod.home}" includes="**/*.jar"/>
</path>-->
</project>