[seam-commits] Seam SVN: r9373 - in trunk/seam-gen: icefaces/build-scripts and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Oct 21 11:15:27 EDT 2008


Author: dan.j.allen
Date: 2008-10-21 11:15:27 -0400 (Tue, 21 Oct 2008)
New Revision: 9373

Modified:
   trunk/seam-gen/build-scripts/build-war.xml
   trunk/seam-gen/build-scripts/build.xml
   trunk/seam-gen/icefaces/build-scripts/build-war.xml
   trunk/seam-gen/icefaces/build-scripts/build.xml
Log:
back out use of sync target since it isn't working with EAR build


Modified: trunk/seam-gen/build-scripts/build-war.xml
===================================================================
--- trunk/seam-gen/build-scripts/build-war.xml	2008-10-21 15:06:00 UTC (rev 9372)
+++ trunk/seam-gen/build-scripts/build-war.xml	2008-10-21 15:15:27 UTC (rev 9373)
@@ -248,9 +248,9 @@
         <fail unless="jboss.home">jboss.home not set</fail>
         
         <mkdir dir="${war.deploy.dir}"/>
-        <sync todir="${war.deploy.dir}">
+        <copy todir="${war.deploy.dir}">
             <fileset dir="${war.dir}"/>
-        </sync>
+        </copy>
     </target>
     
     <target name="unexplode" description="Undeploy the exploded archive">

Modified: trunk/seam-gen/build-scripts/build.xml
===================================================================
--- trunk/seam-gen/build-scripts/build.xml	2008-10-21 15:06:00 UTC (rev 9372)
+++ trunk/seam-gen/build-scripts/build.xml	2008-10-21 15:15:27 UTC (rev 9373)
@@ -254,15 +254,15 @@
                 <mkdir dir="${jar.deploy.dir}"/>
                 <mkdir dir="${war.deploy.dir}"/>                
                 
-                <sync todir="${jar.deploy.dir}">
+                <copy todir="${jar.deploy.dir}">
                         <fileset dir="${jar.dir}"/>
-                </sync>
-                <sync todir="${war.deploy.dir}">
+                </copy>
+                <copy todir="${war.deploy.dir}">
                         <fileset dir="${war.dir}"/>
-                </sync>
-                <sync todir="${ear.deploy.dir}">
+                </copy>
+                <copy todir="${ear.deploy.dir}">
                         <fileset dir="${ear.dir}"/>
-                </sync>
+                </copy>
         </target>
 
         <target name="unexplode" description="Undeploy the exploded archive">

Modified: trunk/seam-gen/icefaces/build-scripts/build-war.xml
===================================================================
--- trunk/seam-gen/icefaces/build-scripts/build-war.xml	2008-10-21 15:06:00 UTC (rev 9372)
+++ trunk/seam-gen/icefaces/build-scripts/build-war.xml	2008-10-21 15:15:27 UTC (rev 9373)
@@ -242,9 +242,9 @@
         <fail unless="jboss.home">jboss.home not set</fail>
         
         <mkdir dir="${war.deploy.dir}"/>
-        <sync todir="${war.deploy.dir}">
+        <copy todir="${war.deploy.dir}">
             <fileset dir="${war.dir}"/>
-        </sync>
+        </copy>
     </target>
     
     <target name="unexplode" description="Undeploy the exploded archive">

Modified: trunk/seam-gen/icefaces/build-scripts/build.xml
===================================================================
--- trunk/seam-gen/icefaces/build-scripts/build.xml	2008-10-21 15:06:00 UTC (rev 9372)
+++ trunk/seam-gen/icefaces/build-scripts/build.xml	2008-10-21 15:15:27 UTC (rev 9373)
@@ -249,15 +249,15 @@
                 <mkdir dir="${jar.deploy.dir}"/>
                 <mkdir dir="${war.deploy.dir}"/>                
                 
-                <sync todir="${jar.deploy.dir}">
+                <copy todir="${jar.deploy.dir}">
                         <fileset dir="${jar.dir}"/>
-                </sync>
-                <sync todir="${war.deploy.dir}">
+                </copy>
+                <copy todir="${war.deploy.dir}">
                         <fileset dir="${war.dir}"/>
-                </sync>
-                <sync todir="${ear.deploy.dir}">
+                </copy>
+                <copy todir="${ear.deploy.dir}">
                         <fileset dir="${ear.dir}"/>
-                </sync>
+                </copy>
         </target>
 
         <target name="unexplode" description="Undeploy the exploded archive">




More information about the seam-commits mailing list