[seam-commits] Seam SVN: r9585 - trunk/seam-gen.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Nov 18 05:04:40 EST 2008


Author: dan.j.allen
Date: 2008-11-18 05:04:40 -0500 (Tue, 18 Nov 2008)
New Revision: 9585

Modified:
   trunk/seam-gen/build.xml
Log:
introduce update-seam target that updates the project with only the latest seam jars (useful for us Seam developers)


Modified: trunk/seam-gen/build.xml
===================================================================
--- trunk/seam-gen/build.xml	2008-11-18 09:59:06 UTC (rev 9584)
+++ trunk/seam-gen/build.xml	2008-11-18 10:04:40 UTC (rev 9585)
@@ -933,6 +933,17 @@
         <echo message="IDEA Users: Open the project using File > Open project... and select the file ${project.home}/${project.name}.ipr"/>
     </target>
 
+    <target name="update-seam" depends="validate-project,copyseam">
+        <echo message="Copying Seam to the ${project.home}/lib directory..." />
+        <copy todir="${project.home}/lib" overwrite="true">
+            <fileset dir="../lib">
+                <include name="jboss-seam.jar"/>
+                <include name="jboss-seam-*.jar"/>
+                <include name="src/jboss-seam-*.jar"/>
+            </fileset>
+        </copy>
+    </target>
+
     <target name="update-project" depends="validate-project,copy-lib"
         description="Update project dependencies">
         <echo message="Updated project '${project.name}' with the latest Seam jars"/>




More information about the seam-commits mailing list