[seam-commits] Seam SVN: r8825 - in branches/Seam_2_0/seam-gen: icefaces/build-scripts and 1 other directory.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Aug 27 01:28:11 EDT 2008


Author: dan.j.allen
Date: 2008-08-27 01:28:10 -0400 (Wed, 27 Aug 2008)
New Revision: 8825

Modified:
   branches/Seam_2_0/seam-gen/build-scripts/build-war.xml
   branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml
Log:
move the groovyc taskdef to a proper place inside the init target


Modified: branches/Seam_2_0/seam-gen/build-scripts/build-war.xml
===================================================================
--- branches/Seam_2_0/seam-gen/build-scripts/build-war.xml	2008-08-26 23:14:14 UTC (rev 8824)
+++ branches/Seam_2_0/seam-gen/build-scripts/build-war.xml	2008-08-27 05:28:10 UTC (rev 8825)
@@ -36,11 +36,12 @@
         <fileset refid="lib" />
     </path>
 
-    <taskdef name ="groovyc"
-        classname ="org.codehaus.groovy.ant.Groovyc"
-        classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
+    <target name="init" description="Initialize the build">
 
-    <target name="init" description="Initialize the build">
+        <taskdef name ="groovyc"
+            classname ="org.codehaus.groovy.ant.Groovyc"
+            classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
+
         <mkdir dir="${classes.model.dir}" />
         <mkdir dir="${classes.action.dir}" />
         <mkdir dir="${dist.dir}" />

Modified: branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml
===================================================================
--- branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml	2008-08-26 23:14:14 UTC (rev 8824)
+++ branches/Seam_2_0/seam-gen/icefaces/build-scripts/build-war.xml	2008-08-27 05:28:10 UTC (rev 8825)
@@ -36,11 +36,12 @@
         <fileset refid="lib" />
     </path>
 
-    <taskdef name ="groovyc"
-        classname ="org.codehaus.groovy.ant.Groovyc"
-        classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
+    <target name="init" description="Initialize the build">
 
-    <target name="init" description="Initialize the build">
+        <taskdef name ="groovyc"
+            classname ="org.codehaus.groovy.ant.Groovyc"
+            classpathref="build.classpath"/> <!-- really only the groovy jar is necessary -->
+
         <mkdir dir="${classes.model.dir}" />
         <mkdir dir="${classes.action.dir}" />
         <mkdir dir="${dist.dir}" />




More information about the seam-commits mailing list