[jboss-cvs] JBossAS SVN: r96970 - in trunk: build and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 25 11:28:52 EST 2009


Author: pgier
Date: 2009-11-25 11:28:51 -0500 (Wed, 25 Nov 2009)
New Revision: 96970

Modified:
   trunk/README.txt
   trunk/build/build.xml
   trunk/build/pom.xml
Log:
Fix cleaning the distribution build.  Make the distribution zip off by default.

Modified: trunk/README.txt
===================================================================
--- trunk/README.txt	2009-11-25 16:17:37 UTC (rev 96969)
+++ trunk/README.txt	2009-11-25 16:28:51 UTC (rev 96970)
@@ -29,7 +29,10 @@
 For example, to build the "ejb3" module and update the dist build, run the following:
 ./build.sh -Dmodule=ejb3
 
+A full zip of the distribution build can be created using the "dist-zip" profile.
+./build.sh -Pdist-zip
 
+
 Running the Testsuite
 --------------------
 Change the the testsuite directory "cd testsuite"

Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml	2009-11-25 16:17:37 UTC (rev 96969)
+++ trunk/build/build.xml	2009-11-25 16:28:51 UTC (rev 96970)
@@ -511,9 +511,7 @@
   <!-- Clean up dist build output -->
   <target name="clean-dist" depends="configure"
           description="Cleans up distribution build.">
-    <delete includeEmptyDirs="true" failonerror="false">
-       <fileset dir="${dist.module.output}"/>
-    </delete>
+    <delete dir="${dist.module.output}" failonerror="false"/>
   </target>
   
   <!-- Clean up all generated files -->

Modified: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml	2009-11-25 16:17:37 UTC (rev 96969)
+++ trunk/build/pom.xml	2009-11-25 16:28:51 UTC (rev 96970)
@@ -622,7 +622,7 @@
       <id>dist-zip</id>
       <activation>
         <property>
-          <name>!skip-dist-zip</name>
+          <name>dist-zip</name>
         </property>
       </activation>
       <build>




More information about the jboss-cvs-commits mailing list