Skip to Content.
Sympa Menu

notify-dpml - svn commit: r1700 - development/main/home/util

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT netcompartner.com
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r1700 - development/main/home/util
  • Date: Wed, 02 Feb 2005 14:54:28 +0100

Author: mcconnell
Date: Wed Feb 2 14:54:28 2005
New Revision: 1700

Modified:
development/main/home/util/build.xml
Log:
Add javadoc creation and publication to the target/api directory.

Modified: development/main/home/util/build.xml
==============================================================================
--- development/main/home/util/build.xml (original)
+++ development/main/home/util/build.xml Wed Feb 2 14:54:28 2005
@@ -23,6 +23,7 @@

<property file="build.properties"/>
<import file="${transit.home}/standard.xml"/>
+ <property file="${transit.home}/common.properties"/>

<target name="init" depends="standard.init">
<filter token="PROJECT-VERSION" value="${project.version}"/>
@@ -37,4 +38,29 @@
<checksum fileext=".md5" file="${module.file}"/>
</target>

+ <target name="javadoc" depends="prepare">
+ <echo message="${dpml.home}/cache/${commons-cli.path}"/>
+ <property name="api.dir" location="${basedir}/target/api"/>
+ <mkdir dir="${api.dir}"/>
+ <javadoc overview="overview.html" destdir="${api.dir}" use="true">
+ <doctitle><![CDATA[<h1>${project.name} API, Build
${project.version}</h1>]]></doctitle>
+ <packageset dir="cli/target/build/main"/>
+ <packageset dir="criteria/target/build/main"/>
+ <packageset dir="exception/target/build/main"/>
+ <packageset dir="i18n/target/build/main"/>
+ <fileset dir="cli/target/build/main"/>
+ <fileset dir="criteria/target/build/main"/>
+ <fileset dir="exception/target/build/main"/>
+ <fileset dir="i18n/target/build/main"/>
+ <bottom><![CDATA[<i>Collective Work Copyright &#169; 2004-2005 The <a
href="http://www.dpml.net";>Digial Product Meta Library.</a> All Rights
Reserved.</i>]]></bottom>
+ <link offline="true" href="http://java.sun.com/j2se/1.4/docs/api";
+ packagelistloc="${basedir}/etc/jdl-1-4.package-list"/>
+ <link offline="true" href="http://www.dpml.net/api/commons-cli/1.0";
+ packagelistloc="${basedir}/etc/commons-cli.package-list"/>
+ <classpath>
+ <pathelement location="${dpml.home}/cache/${commons-cli.path}"/>
+ </classpath>
+ </javadoc>
+ </target>
+
</project>



  • svn commit: r1700 - development/main/home/util, mcconnell, 02/02/2005

Archive powered by MHonArc 2.6.24.

Top of Page