You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2005/09/30 20:22:27 UTC

svn commit: r292828 - /beehive/trunk/controls/build.xml

Author: ekoneil
Date: Fri Sep 30 11:22:24 2005
New Revision: 292828

URL: http://svn.apache.org/viewcvs?rev=292828&view=rev
Log:
Add the Controls SPI documentation to the Javadoc kit.

BB: self
Test: Controls "docs" pass


Modified:
    beehive/trunk/controls/build.xml

Modified: beehive/trunk/controls/build.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/controls/build.xml?rev=292828&r1=292827&r2=292828&view=diff
==============================================================================
--- beehive/trunk/controls/build.xml (original)
+++ beehive/trunk/controls/build.xml Fri Sep 30 11:22:24 2005
@@ -20,7 +20,6 @@
 <project name="Beehive/Controls" default="usage" basedir=".">
 
     <property environment="os"/>
-
     <import file="../beehive-imports.xml"/>
 
     <property name="build.dir" location="build"/>
@@ -147,13 +146,6 @@
     </target>
 
     <!-- ==================================================================== -->
-    <!-- build_all.  build this project and all inter-project dependencies    -->
-    <!-- ==================================================================== -->
-    <target name="build_all">
-        <antcall target="build"/>
-    </target>
-
-    <!-- ==================================================================== -->
     <!-- clean  -->
     <!-- ==================================================================== -->
     <target name="clean">
@@ -162,31 +154,6 @@
     </target>
 
     <!-- ==================================================================== -->
-    <!-- clean_all  -->
-    <!-- ==================================================================== -->
-    <target name="clean_all">
-        <antcall target="clean"/>
-    </target>
-
-    <!-- ==================================================================== -->
-    <!-- redeploy  -->
-    <!-- ==================================================================== -->
-    <target name="redeploy">
-        <antcall target="clean"/>
-        <antcall target="build"/>
-        <antcall target="deploy"/>
-    </target>
-
-    <!-- ==================================================================== -->
-    <!-- redeploy_all  -->
-    <!-- ==================================================================== -->
-    <target name="redeploy_all">
-        <antcall target="clean_all"/>
-        <antcall target="build_all"/>
-        <antcall target="deploy_all"/>
-    </target>
-
-    <!-- ==================================================================== -->
     <!-- deploy -->
     <!-- ==================================================================== -->
     <target name="deploy" depends="build">
@@ -200,13 +167,6 @@
     </target>
 
     <!-- ==================================================================== -->
-    <!-- deploy_all -->
-    <!-- ==================================================================== -->
-    <target name="deploy_all">
-        <antcall target="deploy"/>
-    </target>
-
-    <!-- ==================================================================== -->
     <!-- deploy.controls.runtime -->
     <!-- ==================================================================== -->
     <target name="deploy.controls.runtime"
@@ -223,19 +183,6 @@
     </target>
 
     <!-- ==================================================================== -->
-    <!-- minprod -->
-    <!-- ==================================================================== -->
-    <target name="minprod">
-        <echo message="--------------------------------------------------"/>
-        <echo message="|       controls minprod starting                 |"/>
-        <echo message="--------------------------------------------------"/>
-        <antcall target="deploy"/>
-        <echo message="--------------------------------------------------"/>
-        <echo message="|       controls minprod completed                |"/>
-        <echo message="--------------------------------------------------"/>
-    </target>
-
-    <!-- ==================================================================== -->
     <!-- docs -->
     <!-- ==================================================================== -->
     <target name="docs">
@@ -255,8 +202,11 @@
             <packageset dir="${runtime.dir}" defaultexcludes="yes">
                 <include name="org/apache/beehive/controls/**/*"/>
             </packageset>
+            <packageset dir="${spi.dir}" defaultexcludes="yes">
+                <include name="org/apache/beehive/controls/**/*"/>
+            </packageset>
         </javadoc>
-	 <fixcrlf srcDir="${build.dir}/docs/apidocs" includes="**/*.html"/>        
+        <fixcrlf srcDir="${build.dir}/docs/apidocs" includes="**/*.html"/>        
     </target>
 
     <!-- ==================================================================== -->