ovidiu 01/12/21 10:52:29
Modified: scratchpad/schecoon build.xml
Log:
Moved the classpath definition inside the init target.
Revision Changes Path
1.3 +8 -10 xml-cocoon2/scratchpad/schecoon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-cocoon2/scratchpad/schecoon/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build.xml 2001/12/17 06:51:32 1.2
+++ build.xml 2001/12/21 18:52:29 1.3
@@ -78,17 +78,15 @@
<filter token="date" value="${TODAY}"/>
<filter token="log" value="true"/>
<filter token="verbose" value="true"/>
- </target>
+
+ <path id="classpath">
+ <pathelement location="${build.dest}"/>
+ <fileset dir="./lib">
+ <include name="*.jar"/>
+ </fileset>
+ </path>
- <!-- =================================================================== -->
- <!-- Indentify Classpath -->
- <!-- =================================================================== -->
- <path id="classpath">
- <fileset dir="./lib">
- <include name="*.jar"/>
- <include name="${src.dir}"/>
- </fileset>
- </path>
+ </target>
<!-- Add filters for loading database information from
database.properties file
----------------------------------------------------------------------
In case of troubles, e-mail: webmaster@xml.apache.org
To unsubscribe, e-mail: cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org
|