mirror of https://github.com/apache/poi.git
Ant DTD added plus reference to it in the build.xml. Now it is possible to edit build.xml with an DTD-aware XML editor (like Emacs with PSGML).
New target "javadocs". It is just a copy of the fragment from the "reports" target. This can surely by improved. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353338 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1a18c3d249
commit
09f3bf3ae7
41
build.xml
41
build.xml
|
@ -1,4 +1,5 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE project PUBLIC "-//Ant//Project 1.5//EN" "ant.dtd">
|
||||
|
||||
<!--
|
||||
POI Build System. Written by:
|
||||
|
@ -497,6 +498,46 @@ FORREST_HOME environment variable!</echo>
|
|||
|
||||
</target>
|
||||
|
||||
|
||||
|
||||
<target name="javadocs">
|
||||
<javadoc
|
||||
destdir="${apidocs.report.dir}"
|
||||
author="true"
|
||||
version="true"
|
||||
use="true"
|
||||
verbose="false"
|
||||
windowtitle="POI API">
|
||||
|
||||
<packageset dir="${main.src}" defaultexcludes="yes">
|
||||
<include name="org/apache/poi/**"/>
|
||||
</packageset>
|
||||
<packageset dir="${scratchpad.src}" defaultexcludes="yes">
|
||||
<include name="org/apache/poi/**"/>
|
||||
</packageset>
|
||||
<packageset dir="${contrib.src}" defaultexcludes="yes">
|
||||
<include name="org/apache/poi/**"/>
|
||||
</packageset>
|
||||
|
||||
<classpath>
|
||||
<path refid="main.classpath"/>
|
||||
<path refid="scratchpad.classpath"/>
|
||||
<path refid="contrib.classpath"/>
|
||||
</classpath>
|
||||
|
||||
<doctitle><![CDATA[<h1>POI Documentation</h1>]]></doctitle>
|
||||
<bottom><![CDATA[<i>Copyright © 2003 Apache Software Foundation.</i>]]></bottom>
|
||||
<group title="HSSF" packages="org.apache.poi.hssf*"/>
|
||||
<group title="HPSF" packages="org.apache.poi.hpsf*"/>
|
||||
<group title="POIFS" packages="org.apache.poi.poifs*"/>
|
||||
<group title="HDF" packages="org.apache.poi.hdf*"/>
|
||||
<group title="Record Generator" packages="org.apache.poi.record*"/>
|
||||
<group title="Utils" packages="org.apache.poi.util*"/>
|
||||
</javadoc>
|
||||
</target>
|
||||
|
||||
|
||||
|
||||
<!-- ================================== -->
|
||||
<!-- Generate records -->
|
||||
<!-- ================================== -->
|
||||
|
|
Loading…
Reference in New Issue