[jboss-svn-commits] JBL Code SVN: r11538 - labs/jbossesb/trunk/product.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue May 1 02:27:51 EDT 2007


Author: beve
Date: 2007-05-01 02:27:50 -0400 (Tue, 01 May 2007)
New Revision: 11538

Modified:
   labs/jbossesb/trunk/product/build.xml
Log:
Just added a project description and also descriptions to the "short name" targets. The other targets are still there but don't show up when you run 'ant -p'. Just looks a bit cleaner.


Modified: labs/jbossesb/trunk/product/build.xml
===================================================================
--- labs/jbossesb/trunk/product/build.xml	2007-05-01 06:15:56 UTC (rev 11537)
+++ labs/jbossesb/trunk/product/build.xml	2007-05-01 06:27:50 UTC (rev 11538)
@@ -1,4 +1,9 @@
 <project name="JBESB" default="test" basedir=".">
+	
+	<description>
+		JBoss ESB Project
+	</description>
+	
 	<!-- class path behaviour -->
 	<property name="build.sysclasspath" value="ignore"/>
 
@@ -366,13 +371,15 @@
 	</target>
 
 	<!-- Short target names -->
-	<target name="compile">
+	<target name="compile" description="will compile all classes">
  		<runant target="org.jboss.esb.compile"/>
 	</target>
-	<target name="install">
+	
+	<target name="install" description="produce a basic installation (minus docs and sample)">
  		<runant target="org.jboss.esb.install"/>
 	</target>
-	<target name="dist" depends="tools">
+	
+	<target name="dist" depends="tools" description="produces a product distribution">
  		<runant target="org.jboss.esb.dist"/>
 		<ant antfile="build-distr.xml" target="dist" />
 		<copy todir="${org.jboss.esb.internal.jar.dest}">
@@ -384,29 +391,36 @@
 	<property name="esb.server.name" value="jbossesb-server-${version}"/>
 	<property name="esbserver.dist.dir" value="${org.jboss.esb.internal.dest}/${esb.server.name}"/>
 	</target>
-	<target name="tools">
+	
+	<target name="tools" description="builds the tools into the main dist">
  		<runant target="org.jboss.esb.tools"/>
 	</target>
-	<target name="test">
+	
+	<target name="test" description="will run all tests">
  		<runant target="org.jboss.esb.test"/>
 	</target>
-	<target name="integration">
+	
+	<target name="integration" description="run integration tests">
 	 		<runant target="org.jboss.esb.integration.test"/>
 	</target>		
-	<target name="jar">
+	
+	<target name="jar" description="will generate all jar files">
  		<runant target="org.jboss.esb.jar"/>
 	</target>
-	<target name="clean">
+	
+	<target name="clean" description="cleans the project">
  		<runant target="org.jboss.esb.clean"/>
 	</target>
-	<target name="javadoc">
+	
+	<target name="javadoc" description="generate javadoc">
  		<runant target="org.jboss.esb.javadocs"/>
 	</target>
-    <target name="deploy-server">
+	
+    <target name="deploy-server" description="builds the jbossesb-server">
          <ant antfile="build-distr.xml"/>
     </target>
 
-	<target name="deploy" depends="jar">
+	<target name="deploy" depends="jar" description="deploys the ESB .sar to an application server">
 		<ant antfile="build-distr.xml" target="build.sar" />
 		<copy  todir="${org.jboss.esb.server.home}/server/${org.jboss.esb.server.config}/deploy">
 		    <fileset dir="build" includes="jbossesb.sar/**"/></copy>




More information about the jboss-svn-commits mailing list