summaryrefslogtreecommitdiff
blob: 98d048e0b6ce97a8add22931aaa35dad1cc3b0e7 (plain)
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
--- build.xml.o	2006-10-21 18:12:49.000000000 +0200
+++ build.xml	2006-10-21 18:29:18.000000000 +0200
@@ -122,11 +122,12 @@
 
   <!-- Construct compile classpath -->
   <path id="compile.classpath">
-    <pathelement location="${build.home}/classes"/>
-    <pathelement location="${commons-beanutils.jar}"/>
-    <pathelement location="${commons-digester.jar}"/>
-    <pathelement location="${commons-logging.jar}"/>
-    <pathelement location="${oro.jar}"/>
+    <pathelement path="${build.home}/classes"/>
+    <pathelement path="${commons-beanutils.jar}"/>
+    <pathelement path="${commons-digester.jar}"/>
+    <pathelement path="${commons-logging.jar}"/>
+    <pathelement path="${commons-collections.jar}"/>
+    <pathelement path="${oro.jar}"/>
     <path refid="downloaded.lib.classpath"/>
   </path>
 
@@ -204,7 +205,7 @@
   </target>
 
 
-  <target name="compile" depends="static"
+  <target name="compile" depends="prepare"
    description="Compile shareable components">
     <javac  srcdir="${source.home}"
            destdir="${build.home}/classes"
@@ -278,7 +279,7 @@
     </exec>
   </target>
 
-  <target name="javadoc" depends="compile, javadoc.js"
+  <target name="javadoc" depends="compile"
    description="Create component Javadoc documentation">
     <javadoc sourcepath="${source.home}"
                 destdir="${dist.home}/docs/apidocs"