jstrachan 01/08/29 00:53:52
Modified: messenger build.xml
Removed: messenger/docs messenger.html
messenger/xdocs messenger.xml project.xml site.xsl
Log:
removed documentation which has moved over to the jakarta-commons/xdocs directory
Revision Changes Path
1.5 +7 -5 jakarta-commons-sandbox/messenger/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/messenger/build.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- build.xml 2001/08/28 22:38:28 1.4
+++ build.xml 2001/08/29 07:53:52 1.5
@@ -1,4 +1,4 @@
-<!-- $Id: build.xml,v 1.4 2001/08/28 22:38:28 jstrachan Exp $ -->
+<!-- $Id: build.xml,v 1.5 2001/08/29 07:53:52 jstrachan Exp $ -->
<project name="messenger" default="test" basedir=".">
<!-- patternset describing files to be copied from the doc directory -->
@@ -66,12 +66,10 @@
<property name="source.src.conf" value="${source.src}/conf"/>
<property name="source.src.java" value="${source.src}/java"/>
<property name="source.src.test" value="${source.src}/test"/>
- <property name="source.doc" value="${basedir}/docs"/>
- <property name="source.xdocs" value="${basedir}/xdocs"/>
+ <property name="source.doc" value="${basedir}/doc"/>
<property name="dest" value="${basedir}/dist"/>
<property name="dest.classes" value="${dest}/classes"/>
<property name="dest.doc" value="${dest}/doc"/>
- <property name="dest.xdocs" value="${dest}/xdocs"/>
<property name="dest.doc.api" value="${dest.doc}/api"/>
<property name="dest.jardir" value="${dest}"/>
<property name="dest.jardir.jar" value="${dest.jardir}/${name}.jar"/>
@@ -117,7 +115,7 @@
<!-- ######################################################### -->
- <target name="doc" depends="init,doc-top,doc-html,doc-copy,doc-javadoc"
description="generates javadocs and other documentation">
+ <target name="doc" depends="init,doc-top,doc-copy,doc-javadoc"
description="generates javadocs and other documentation">
</target>
<target name="doc-top" depends="init">
@@ -126,12 +124,14 @@
</target>
<target name="doc-copy" depends="init" if="available-doc">
+<!--
<mkdir dir="${dest.xdocs}"/>
<copy todir="${dest.xdocs}">
<fileset dir="${source.xdocs}">
<patternset refid="patternset-doc"/>
</fileset>
</copy>
+-->
<copy todir="${dest.doc}">
<fileset dir="${source.doc}">
<patternset refid="patternset-doc"/>
@@ -139,6 +139,7 @@
</copy>
</target>
+<!--
<target name="doc-html" depends="init" if="available-doc">
<style
basedir="${source.xdocs}"
@@ -147,6 +148,7 @@
includes="**/*.xml"
excludes="project.xml"/>
</target>
+-->
<target name="doc-javadoc" depends="init" if="available-src-java">
<!-- copy all the non-test sources out to the work directory and javadoc that
-->