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

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Dec 10 09:53:12 EST 2006


Author: jplenhart
Date: 2006-12-10 09:53:11 -0500 (Sun, 10 Dec 2006)
New Revision: 8175

Modified:
   labs/jbossesb/trunk/product/build.xml
Log:
Altered the dist target so that it will copy deployment.properties-example to a file in the distribution named deployment.properties.  The target had to changed to exclude the old file as well in a fileset copy.

Modified: labs/jbossesb/trunk/product/build.xml
===================================================================
--- labs/jbossesb/trunk/product/build.xml	2006-12-10 14:48:57 UTC (rev 8174)
+++ labs/jbossesb/trunk/product/build.xml	2006-12-10 14:53:11 UTC (rev 8175)
@@ -129,7 +129,7 @@
 	<target name="org.jboss.esb.core.jar" depends="org.jboss.esb.compile">
 		<echo message="Building jar file"/>
 		<ant dir="core" target="jar"/>
-	</target>
+	</target>
 	
 	
 	<target name="org.jboss.esb.javadocs"
@@ -230,11 +230,13 @@
 		
 		<echo message="Installing install files"/>
 				<mkdir dir="${org.jboss.esb.installationdirectory}/install"/>
-				<copy
+                <copy file="install/deployment.properties-example" tofile="${org.jboss.esb.installationdirectory}/install/deployment.properties"/>
+                <copy
 					todir="${org.jboss.esb.installationdirectory}/install">
 					<fileset dir="install">
 						<exclude name=".svn"/>
-					</fileset>
+                        <exclude name="deployment.properties-example"/>
+                    </fileset>
 				</copy>
 
 		<echo message="Installing xml ${org.jboss.esb.installationdirectory}"/>




More information about the jboss-svn-commits mailing list