You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2018/10/31 16:04:14 UTC

svn commit: r1845342 - /poi/site/build.xml

Author: nick
Date: Wed Oct 31 16:04:14 2018
New Revision: 1845342

URL: http://svn.apache.org/viewvc?rev=1845342&view=rev
Log:
Fix the site build so that the javadocs task works again, and pushes correctly to the publish folder

Modified:
    poi/site/build.xml

Modified: poi/site/build.xml
URL: http://svn.apache.org/viewvc/poi/site/build.xml?rev=1845342&r1=1845341&r2=1845342&view=diff
==============================================================================
--- poi/site/build.xml (original)
+++ poi/site/build.xml Wed Oct 31 16:04:14 2018
@@ -23,13 +23,12 @@ under the License.
 
     <property environment="env"/>
     <property name="forrest.home" value="${env.FORREST_HOME}"/>
-    <include file="${env.FORREST_HOME}/main/forrest.build.xml" 
-             as="forrest" optional="true" />
 
     <property name="main.documentation" value="src/documentation"/>
     <property name="build.site" location="build/tmp/site/build/site"/>
     <property name="build.site.src" location="build/tmp/site"/>
-    <property name="apidocs.report.dir" location="${env.POI_HOME}/build/tmp/site/build/site/apidocs/dev"/>
+    <property name="apidocs.report.dir" location="${build.site}/apidocs/dev"/>
+    <property name="apidocs.publish.dir" location="publish/apidocs/dev"/>
 
     <tstamp>
         <format property="tstamp.year" pattern="yyyy"/>
@@ -38,6 +37,8 @@ under the License.
     <target name="init" >
         <mkdir dir="build"/>
         <mkdir dir="${build.site}"/>
+        <mkdir dir="${apidocs.report.dir}"/>
+        <mkdir dir="${apidocs.publish.dir}"/>
     </target>
 
     <target name="clean">



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org