Author: ekoneil
Date: Tue Jan 18 14:07:13 2005
New Revision: 125553

URL: http://svn.apache.org/viewcvs?view=rev&rev=125553
Log:
Little more cleanup.

- remove the Ant / Tomcat installers from SVN
- print the classpath used when compiling XMLBeans (useful for debugging 
compilation failures)
- break "clean"'s dependence with bootstrap
  - yes, you still need to run bootstrap
- update BUILDING.txt with "bootstrap" instructions

BB: self


Removed:
   incubator/beehive/trunk/external/ant/
   incubator/beehive/trunk/external/tomcat/
Modified:
   incubator/beehive/trunk/BUILDING.txt
   incubator/beehive/trunk/beehive-imports.xml
   incubator/beehive/trunk/build.xml

Modified: incubator/beehive/trunk/BUILDING.txt
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/BUILDING.txt?view=diff&rev=125553&p1=incubator/beehive/trunk/BUILDING.txt&r1=125552&p2=incubator/beehive/trunk/BUILDING.txt&r2=125553
==============================================================================
--- incubator/beehive/trunk/BUILDING.txt        (original)
+++ incubator/beehive/trunk/BUILDING.txt        Tue Jan 18 14:07:13 2005
@@ -86,7 +86,9 @@
 one additional JAR to provide JSR 173 support for StAX.  This JAR is
 downloaded from the network the first time you build Beehive.  Be sure
 to have a network connection for your first build.  A network
-connection is not required for any subsequent builds.
+connection is not required for any subsequent builds.  To install JSR 173, run:
+
+    $>ant bootstrap
 
 To build Beehive, run:
 

Modified: incubator/beehive/trunk/beehive-imports.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/beehive-imports.xml?view=diff&rev=125553&p1=incubator/beehive/trunk/beehive-imports.xml&r1=125552&p2=incubator/beehive/trunk/beehive-imports.xml&r2=125553
==============================================================================
--- incubator/beehive/trunk/beehive-imports.xml (original)
+++ incubator/beehive/trunk/beehive-imports.xml Tue Jan 18 14:07:13 2005
@@ -261,6 +261,9 @@
         <attribute name="classgenDir"/>
         <attribute name="xbeanBuildClasspathRef" 
default="xbean.dependency.path"/>
         <sequential>
+            <property name="curr.classpath" refid="@{xbeanBuildClasspathRef}"/>
+            <echo>XMLBean build classpath: ${curr.classpath}</echo>
+
             <taskdef name="xmlbeanbuild" 
                  classname="org.apache.xmlbeans.impl.tool.XMLBean" 
                  classpathref="xbean.dependency.path"/>

Modified: incubator/beehive/trunk/build.xml
Url: 
http://svn.apache.org/viewcvs/incubator/beehive/trunk/build.xml?view=diff&rev=125553&p1=incubator/beehive/trunk/build.xml&r1=125552&p2=incubator/beehive/trunk/build.xml&r2=125553
==============================================================================
--- incubator/beehive/trunk/build.xml   (original)
+++ incubator/beehive/trunk/build.xml   Tue Jan 18 14:07:13 2005
@@ -27,7 +27,7 @@
         <delete dir="${beehive.home}/build"/>
     </target>
 
-    <target name="deploy" depends="bootstrap" description="Deploy Beehive">
+    <target name="deploy" description="Deploy Beehive">
         <ant dir="controls" target="build" inheritAll="false"/>
         <ant dir="netui" target="deploy" inheritAll="false"/>
         <ant dir="wsm" target="deploy" inheritAll="false"/>
@@ -86,7 +86,6 @@
     <target name="get.jsr173" unless="jsr173.present">
         <property name="jsr173.installer" 
location="${beehive.home}/external/xmlbeans/jsr173_api.jar"/>
         <echo>JSR 173 API JAR not found in directory: 
${beehive.installed.dir}</echo>
-        <mkdir dir="${beehive.external.dir}/xmlbeans"/>
         <get dest="${jsr173.installer}" 
              src="http://workshop.bea.com/xmlbeans/jsr173v1/jsr173.jar"; 
              verbose="true" 

Reply via email to