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/08/04 17:44:58 UTC

svn commit: r227416 - /incubator/beehive/trunk/docs/forrest/build.xml

Author: ekoneil
Date: Thu Aug  4 08:44:56 2005
New Revision: 227416

URL: http://svn.apache.org/viewcvs?rev=227416&view=rev
Log:
Forgot this in the last checkin...

<sigh/>

BB: self


Added:
    incubator/beehive/trunk/docs/forrest/build.xml

Added: incubator/beehive/trunk/docs/forrest/build.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/build.xml?rev=227416&view=auto
==============================================================================
--- incubator/beehive/trunk/docs/forrest/build.xml (added)
+++ incubator/beehive/trunk/docs/forrest/build.xml Thu Aug  4 08:44:56 2005
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+
+<!--
+      ============================================================
+
+      This build file is merely a placeholder for the importation of the forrest.build.xml file.
+      'site', the default target here, is a target imported from forrest.build.xml
+
+      ============================================================
+-->
+<project name="Beehive Forrest Site Build" default="build">
+ 
+     <property environment="os"/>
+
+    <target name="build">
+        <ant dir="release" target="build" inheritAll="false"/>
+
+        <mkdir dir="build"/>
+        <copy todir="build/site">
+            <fileset dir="release/build/site"/>
+        </copy>
+    </target>
+
+    <target name="clean">
+        <delete dir="site/build"/>
+        <delete dir="build"/>
+    </target>
+
+</project>