Revision: 3750
Author: [email protected]
Date: Fri Jul 16 11:44:42 2010
Log: Fixed the javadoc targets to create the dist/doc folder before creating dist/doc/api. Previously, the build was failing because dist/doc/api could not be created.
http://code.google.com/p/power-architect/source/detail?r=3750

Modified:
 /trunk/build.xml

=======================================
--- /trunk/build.xml    Fri Jul 16 09:19:53 2010
+++ /trunk/build.xml    Fri Jul 16 11:44:42 2010
@@ -896,6 +896,7 @@
        <target name="javadoc"
description="Generate the Javadoc documentation for the Architect API in the dist directory"
                depends="compile">
+               <mkdir dir="${dist.dir}/doc"/>
                <mkdir dir="${dist.dir}/doc/api"/>
<echo message="NOTE: If the javadoc command is not accessible from your PATH variable, then this target WILL fail."/>
                <javadoc sourcepath="${src}" destdir="${dist.dir}/doc/api"
@@ -918,6 +919,7 @@
        <target name="javadoc.with.umlgraph"
description="Generate the Javadoc documentation for the Architect API along with UML diagrams generated using UMLGraph"
                depends="compile">
+               <mkdir dir="${dist.dir}/doc"/>
                <mkdir dir="${dist.dir}/doc/api"/>
<echo message="NOTE: If the javadoc command is not accessible from your PATH variable, then this target WILL fail."/>
                <javadoc sourcepath="${src}" destdir="${dist.dir}/doc/api"

Reply via email to