Author: steveh
Date: Mon Feb 28 16:14:55 2005
New Revision: 155719

URL: http://svn.apache.org/viewcvs?view=rev&rev=155719
Log:
Fix for BEEHIVE-87: README.txt in dist doesn't have what it needs

I added another README.txt file at docs/dist-docs/README.txt.  We need one 
dedicated README.txt file to be sent out with the distributions 
(docs/dist-docs/README.txt) and another that describes the Beehive source 
(trunk/README.txt).

Added:
    incubator/beehive/trunk/docs/dist-docs/
    incubator/beehive/trunk/docs/dist-docs/README.txt   (with props)
Modified:
    incubator/beehive/trunk/distribution.xml

Modified: incubator/beehive/trunk/distribution.xml
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/distribution.xml?view=diff&r1=155718&r2=155719
==============================================================================
--- incubator/beehive/trunk/distribution.xml (original)
+++ incubator/beehive/trunk/distribution.xml Mon Feb 28 16:14:55 2005
@@ -253,6 +253,7 @@
                 <include name="LICENSE.TXT"/>
                 <include name="NOTICE.txt"/>
             </fileset>
+                       <fileset file="docs/dist-docs/README.txt"/>
         </copy>
 
         <property name="webapp.name" value="netui-blank"/>
@@ -362,7 +363,14 @@
         <copy todir="${dist.dir}/docs" failOnError="">
             <fileset dir="docs/forrest/build/site"/>
         </copy>
-    </target>
+           <copy todir="${dist.dir}" failOnError="true">
+            <fileset dir="${beehive.home}">
+                <include name="LICENSE.TXT"/>
+                <include name="NOTICE.txt"/>
+            </fileset>
+                       <fileset file="docs/dist-docs/README.txt"/>
+        </copy>
+    </target>          
 
     <target name="build.dist.archives" depends="build.dist,build.dist.lib" 
description="Builds all Beehive distribution archives (.zip, .tar.gz, etc)">
         <fail unless="beehive.version" message="Could not build distribution 
archives; beehive.version property not specified!"/>
@@ -418,13 +426,6 @@
            <fileset dir="${dist.dir}/docs" />
         </copy>
 
-       <copy todir="${tmpdocsdir}" failOnError="true">
-            <fileset dir="${beehive.home}">
-                <include name="LICENSE.TXT"/>
-                <include name="NOTICE.txt"/>
-            </fileset>
-        </copy>
-       
         <fail unless="beehive.version" message="Could not build distribution 
archive; beehive.version was not specified"/>
 
         <mkdir dir="${dist.archives.dir}"/>
@@ -437,13 +438,6 @@
         <property name="tmpdocsdir" 
location="${dist.tmp.dir}/${dist.name}-docs" />
         <copy todir="${tmpdocsdir}">
            <fileset dir="${dist.dir}/docs" />
-        </copy>
-
-       <copy todir="${tmpdocsdir}" failOnError="true">
-            <fileset dir="${beehive.home}">
-                <include name="LICENSE.TXT"/>
-                <include name="NOTICE.txt"/>
-            </fileset>
         </copy>
 
         <fail unless="beehive.version" message="Could not build distribution 
archive; beehive.version was not specified"/>

Added: incubator/beehive/trunk/docs/dist-docs/README.txt
URL: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/dist-docs/README.txt?view=auto&rev=155719
==============================================================================
--- incubator/beehive/trunk/docs/dist-docs/README.txt (added)
+++ incubator/beehive/trunk/docs/dist-docs/README.txt Mon Feb 28 16:14:55 2005
@@ -0,0 +1,47 @@
+
+
+                                 APACHE BEEHIVE
+ 
+
+  Welcome to Beehive
+  ------------------
+
+  Apache Beehive is an effort undergoing incubation at the
+  Apache Software Foundation (ASF), sponsored by the Incubator
+  project. Incubation is required of all newly accepted projects
+  until a further review indicates that the infrastructure,
+  communications, and decision making process have stabilized in a
+  manner consistent with other successful ASF projects. While
+  incubation status is not necessarily a reflection of the
+  completeness or stability of the code, it does indicate that the
+  project has yet to be fully endorsed by the ASF. 
+
+
+  What is Beehive?
+  -----------
+  
+  The goal of Beehive is to make J2EE programming easier by using JSR-175 
metadata annotations
+  to simplify the most complex J2EE coding tasks. Beehive is divided into three
+  sub-projects:
+
+     Page Flows -- Page Flows are built on top of Struts. The JSR-175 
programming model
+                   allows for automatic updating of Struts configuration files 
as well as
+                   easy tooling inside of IDEs.
+
+     Controls -- Controls are a framework for building lightweight J2EE 
components.
+
+     Web Services -- The web services project implements JSR-181, a metadata 
annotation
+                     driven programming model for web services.
+
+
+  Documentation
+  -------------
+
+  Complete documentation, including a users guide, tutorials, and instructions 
for running samples,
+  is available locally at
+
+     BEEHIVE_HOME/docs/index.html
+
+  and online at
+
+     http://incubator.apache.org/beehive/index.html
\ No newline at end of file

Propchange: incubator/beehive/trunk/docs/dist-docs/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to