hammant 02/04/04 23:11:34
Modified: all build.xml
Log:
xdocs no longer generated from 'all' build file
Revision Changes Path
1.129 +1 -73 jakarta-avalon-excalibur/all/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/all/build.xml,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- build.xml 4 Apr 2002 13:27:51 -0000 1.128
+++ build.xml 5 Apr 2002 07:11:34 -0000 1.129
@@ -704,80 +704,8 @@
<echo message="Printer friendly docs are not yet implemented"/>
</target>
- <!-- Prepares the html bases documention -->
- <target name="html-docs">
-
- <mkdir dir="${build.context}"/>
- <mkdir dir="${build.xdocs}"/>
- <mkdir dir="${build.docs}"/>
- <mkdir dir="${build.dir}/work"/>
-
- <!-- Base pointers for non-xdocs documentation. Override these in
ant.properties to link to local docs -->
- <property name="avalon.base" value="http://jakarta.apache.org/avalon"/>
- <property name="framework.base"
value="http://jakarta.apache.org/avalon/framework"/>
- <property name="phoenix.base"
value="http://jakarta.apache.org/avalon/phoenix"/>
- <property name="cornerstone.base"
value="http://jakarta.apache.org/avalon/cornerstone"/>
- <property name="logkit.base"
value="http://jakarta.apache.org/avalon/logkit"/>
- <property name="testlet.base"
value="http://jakarta.apache.org/avalon/testlet"/>
- <property name="excalibur.base"
value="http://jakarta.apache.org/avalon/excalibur"/>
-
- <filter token="year" value="${year}"/>
- <filter token="AVALON_BASE" value="${avalon.base}"/>
- <filter token="FRAMEWORK_BASE" value="${framework.base}"/>
- <filter token="PHOENIX_BASE" value="${phoenix.base}"/>
- <filter token="CORNERSTONE_BASE" value="${cornerstone.base}"/>
- <filter token="LOGKIT_BASE" value="${logkit.base}"/>
- <filter token="TESTLET_BASE" value="${testlet.base}"/>
- <filter token="EXCALIBUR_BASE" value="${excalibur.base}"/>
-
- <!-- Copy files from jakarta-avalon src/documentation -->
- <copy todir="${build.context}" filtering="on">
- <fileset dir="${context.dir}">
- <exclude name="**/*.gif"/>
- <exclude name="**/*.jpg"/>
- <exclude name="**/*.png"/>
- <exclude name="xdocs/**"/> <!-- use xdocs from excalibur -->
- </fileset>
- </copy>
- <copy todir="${build.context}" filtering="off">
- <fileset dir="${context.dir}">
- <include name="**/*.gif"/>
- <include name="**/*.jpg"/>
- <include name="**/*.png"/>
- <exclude name="xdocs/**"/> <!-- use xdocs from excalibur -->
- </fileset>
- </copy>
-
- <!-- Copy files from jakarta-avalon-excalibur src/xdocs -->
- <copy todir="${build.xdocs}" filtering="on" overwrite="yes">
- <fileset dir="${xdocs.dir}">
- <exclude name="**/*.dia" />
- <exclude name="**/*.png" />
- </fileset>
- </copy>
- <copy todir="${build.xdocs}" filtering="off">
- <fileset dir="${xdocs.dir}">
- <include name="**/*.dia" />
- <include name="**/*.png" />
- </fileset>
- </copy>
-
- <java classname="org.apache.cocoon.Main" fork="true">
- <arg value="-c${build.context}/"/>
- <arg value="-d${build.docs}"/>
- <arg value="-w${build.dir}/work"/>
- <arg value="-l${build.dir}/work/cocoon.log"/>
- <arg value="-uINFO"/>
- <arg value="-f${xdocs.dir}/excalibur.uris"/>
- <classpath>
- <path refid="tools.class.path"/>
- <fileset dir="${tools.dir}/ext"/>
- </classpath>
- </java>
- </target>
-
<!-- Prepares the documentation directory -->
- <target name="docs" depends="javadocs, html-docs" description="generates
the Excalibur documentation"/>
+ <target name="docs" depends="javadocs" description="generates the
Excalibur documentation"/>
<!-- Create the source distribution -->
<target name="src-dist" depends="setup-properties">
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>