mpoeschl 01/12/24 08:33:33
Modified: . build-docs.xml
Log:
add log4j and commons-collections to the classpath to work with velocity-1.3-dev
Revision Changes Path
1.4 +13 -9 jakarta-turbine-tdk/build-docs.xml
Index: build-docs.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-tdk/build-docs.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build-docs.xml 2001/09/19 16:48:57 1.3
+++ build-docs.xml 2001/12/24 16:33:33 1.4
@@ -9,6 +9,8 @@
<pathelement location="${velocity.jar}"/>
<pathelement location="${jdom.jar}"/>
<pathelement location="${xerces.jar}"/>
+ <pathelement location="${commons-collections.jar}"/>
+ <pathelement location="${log4j.jar}"/>
</path>
<target name="init-tasks">
@@ -16,32 +18,34 @@
<classpath refid="classpath"/>
</available>
</target>
-
+
<target name="docs-prepare-error" depends="init-tasks" unless="jdom.present">
<echo>
In order to generate the documentation you must have the following
properties set:
-
+
velocity.jar = ${velocity.jar}
jdom.jar = ${jdom.jar}
xerces.jar = ${xerces.jar}
-
+ commons-collections.jar = ${commons-collections.jar}
+ log4j.jar = ${log4j.jar}
+
Anakia is a Velocity tool which requires JDOM and JDOM's default
parser is found in the Xerces package.
-
+
You must also have the jakarta-site2 module checked out.
-
+
<http://jakarta.apache.org/site/jakarta-site2.html>
</echo>
</target>
- <target
+ <target
name="main"
depends="docs-prepare-error"
description="--> generates the HTML documentation"
if="jdom.present">
- <taskdef
+ <taskdef
name="anakia"
classname="org.apache.velocity.anakia.AnakiaTask">
<classpath refid="classpath"/>
@@ -49,8 +53,8 @@
<mkdir dir="${tdk.site}"/>
- <anakia
- basedir="${tdk.xdocs}"
+ <anakia
+ basedir="${tdk.xdocs}"
destdir="${tdk.site}/"
extension=".html" style="./site.vsl"
projectFile="stylesheets/project.xml"
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>