[seam-commits] Seam SVN: r8826 - in trunk/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:57 EDT 2008


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

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


Modified: trunk/seam-gen/build-scripts/build-war.xml
===================================================================
--- trunk/seam-gen/build-scripts/build-war.xml	2008-08-27 05:28:10 UTC (rev 8825)
+++ trunk/seam-gen/build-scripts/build-war.xml	2008-08-27 05:28:57 UTC (rev 8826)
@@ -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: trunk/seam-gen/icefaces/build-scripts/build-war.xml
===================================================================
--- trunk/seam-gen/icefaces/build-scripts/build-war.xml	2008-08-27 05:28:10 UTC (rev 8825)
+++ trunk/seam-gen/icefaces/build-scripts/build-war.xml	2008-08-27 05:28:57 UTC (rev 8826)
@@ -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