You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2012/04/09 22:55:48 UTC

svn commit: r1311438 - in /ant/ivy/core/branches/2.3.x: ./ build-release.xml

Author: maartenc
Date: Mon Apr  9 20:55:48 2012
New Revision: 1311438

URL: http://svn.apache.org/viewvc?rev=1311438&view=rev
Log:
Build fix: generation of the documentation didn't work any more (merged from trunk).

Modified:
    ant/ivy/core/branches/2.3.x/   (props changed)
    ant/ivy/core/branches/2.3.x/build-release.xml

Propchange: ant/ivy/core/branches/2.3.x/
------------------------------------------------------------------------------
  Merged /ant/ivy/core/trunk:r1311437

Modified: ant/ivy/core/branches/2.3.x/build-release.xml
URL: http://svn.apache.org/viewvc/ant/ivy/core/branches/2.3.x/build-release.xml?rev=1311438&r1=1311437&r2=1311438&view=diff
==============================================================================
--- ant/ivy/core/branches/2.3.x/build-release.xml (original)
+++ ant/ivy/core/branches/2.3.x/build-release.xml Mon Apr  9 20:55:48 2012
@@ -188,7 +188,7 @@
 
         <!-- requires java 6 jdk in path and Apache Ant 1.7 -->
         <taskdef uri="antlib:xooki" file="${doc.src.dir}/xooki/antlib.xml" />
-        <xooki:generate destDir="${doc.build.dir}" checkUpToDate="true">
+        <xooki:generate destDir="${doc.build.dir}" checkUpToDate="true" xookidir="${doc.src.dir}/xooki">
             <fileset dir="${doc.tmp.dir}">
                 <include name="**/*.html"/>
                 <exclude name="template.html"/>
@@ -211,8 +211,8 @@
         <!-- requires java 6 jdk in path and Apache Ant 1.7 -->
         <taskdef uri="antlib:xooki" file="${doc.src.dir}/xooki/antlib.xml" />
         <xooki:print src="${doc.tmp.dir}/index.html" 
-                     dest="${doc.build.dir}/book.html" />
-	</target>
+                     dest="${doc.build.dir}/book.html"
+                     xookidir="${doc.src.dir}/xooki" />
 
 	<target name="all-doc" depends="javadoc, generate-doc" />