mirror of https://github.com/apache/poi.git
Update to latest dev Centipede version with cents that behave correctly in the build dir
and references on the main page to new Centipede features. Oh, and look at the grouped javadocs :-) Need only to reference the uml dos and I've finished for now :-) git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352480 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ef355b8fe8
commit
48ba756ec2
|
@ -42,7 +42,7 @@
|
|||
<work dir="./build/work"/>
|
||||
<documentation dir="./build/docs">
|
||||
<javadocs dir="./build/docs/javadocs"/>
|
||||
<test dir="./build/docs/test"/>
|
||||
<test dir="./build/docs/tests"/>
|
||||
<metrics dir="./build/docs/metrics"/>
|
||||
</documentation>
|
||||
<scratchpad dir="./build/scratchpad">
|
||||
|
|
|
@ -24,9 +24,11 @@
|
|||
<tools>
|
||||
<cents repository="http://krysalis.org/jars/">
|
||||
<!-- not currently used by POI
|
||||
<antidote/>
|
||||
<xmldoclet/> -->
|
||||
<centipede/>
|
||||
<antidote/>
|
||||
<xmldoclet/> -->
|
||||
<centipede>
|
||||
<javadocs group="POIFS org.apache.poi.poifs*,HSSF org.apache.poi.hssf*,HPSF org.apache.poi.hpsf*,"/>
|
||||
</centipede>
|
||||
<junit/>
|
||||
<jdepend/>
|
||||
<checkstyle/>
|
||||
|
|
|
@ -6,30 +6,38 @@
|
|||
copyright="@year@ Poi Project"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
<menu label="About">
|
||||
<menu label="Community">
|
||||
<menu-item label="Index" href="index.html"/>
|
||||
<menu-item label="History and Future" href="historyandfuture.html"/>
|
||||
<menu-item label="Download" href="http://jakarta.apache.org/builds/jakarta-poi/"/>
|
||||
<menu-item label="1.0 Vision" href="plan/POI10Vision.html"/>
|
||||
<menu-item label="2.0 Vision" href="plan/POI20Vision.html"/>
|
||||
<menu-item label="Who we are" href="who.html"/>
|
||||
<menu-item label="Changes" href="changes.html"/>
|
||||
<menu-item label="FAQ" href="faq.html"/>
|
||||
<menu-item label="Who we are" href="who.html"/>
|
||||
<menu-item label="Download" href="http://jakarta.apache.org/builds/jakarta-poi/"/>
|
||||
</menu>
|
||||
|
||||
|
||||
<menu label="Sub-Projects">
|
||||
<menu-item label="Overview" href="overview.html"/>
|
||||
<menu-item label="POIFS" href="poifs/index.html"/>
|
||||
<menu-item label="HSSF" href="hssf/index.html"/>
|
||||
<menu-item label="HDF" href="hdf/index.html"/>
|
||||
<menu-item label="HPSF" href="hpsf/index.html"/>
|
||||
<menu-item label="POI-Utils" href="utils/index.html"/>
|
||||
<menu-item label="POI-Utils" href="utils/index.html"/>
|
||||
</menu>
|
||||
|
||||
<menu label="References">
|
||||
|
||||
<menu label="Docs">
|
||||
<menu-item label="Javadocs" href="http://jakarta.apache.org/poi/javadocs/"/>
|
||||
<menu-item label="Test Results" href="http://jakarta.apache.org/poi/test/"/>
|
||||
<menu-item label="Metrics" href="http://jakarta.apache.org/poi/metrics/jdepend-report.html"/>
|
||||
<menu-item label="Source" href="http://jakarta.apache.org/poi/javadocs/javasrc/"/>
|
||||
<menu-item label="Changes" href="changes.html"/>
|
||||
<menu-item label="FAQ" href="faq.html"/>
|
||||
</menu>
|
||||
|
||||
<menu label="Code">
|
||||
<menu-item label="Junit Test Results" href="http://jakarta.apache.org/poi/tests/junit/"/>
|
||||
<menu-item label="Dependency Metrics" href="http://jakarta.apache.org/poi/metrics/jdepend/"/>
|
||||
<menu-item label="Checkstyle" href="http://jakarta.apache.org/poi/metrics/checkstyle/"/>
|
||||
</menu>
|
||||
|
||||
<menu label="References">
|
||||
<menu-item label="In The News" href="inthenews.html"/>
|
||||
<menu-item label="Live Sites" href="livesites.html"/>
|
||||
<menu-item label="XLS spec [PDF]" href="http://sc.openoffice.org/excelfileformat.pdf"/>
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
<target name="-init">
|
||||
<target name="-init" unless="${antipede.init.already.called}">
|
||||
<tstamp>
|
||||
<format property="YEAR" pattern="yyyy" locale="en"/>
|
||||
</tstamp>
|
||||
|
||||
<buildnumber/>
|
||||
|
||||
<property name="antipede.init.already.called" value="true"/>
|
||||
|
||||
<echo>
|
||||
--------------------------------------------------------------
|
||||
|
||||
|
@ -24,7 +27,7 @@
|
|||
-->
|
||||
<property name="tools.jar" value="${java.home}/../lib/tools.jar"/>
|
||||
<available file="${tools.jar}" property="tools.jar.present"/>
|
||||
<fail unless="tools.jar.present" message="tools.jar not found. Probably JDK not installed."/>
|
||||
<fail unless="tools.jar.present" message="tools.jar not found. Probably you are using the JRE and the JDK is not installed. Please download the JDK from the Java Sun website www.javasoft.com ."/>
|
||||
|
||||
|
||||
<!-- fixed centipede dirs -->
|
||||
|
@ -190,7 +193,16 @@
|
|||
target="${cent-target}" />
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ============================================= -->
|
||||
<!-- Simple utility target to call a cent target -->
|
||||
<!-- ==============================================-->
|
||||
<target name="cent-target" depends="-init">
|
||||
<ant antfile="tools/cents/${cent-name}.cent/xbuild.xml"
|
||||
inheritall="true"
|
||||
dir="."
|
||||
target="${cent-target}" />
|
||||
</target>
|
||||
|
||||
<!-- ================================== -->
|
||||
<!-- Create a cent.jar package -->
|
||||
<!-- using an already deployed cent -->
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue