You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/01/08 23:00:34 UTC

svn commit: r610188 - in /myfaces/core/trunk_1.2.x/api: build.xml pom.xml

Author: skitching
Date: Tue Jan  8 14:00:31 2008
New Revision: 610188

URL: http://svn.apache.org/viewvc?rev=610188&view=rev
Log:
Remove remnants of core-1.1 build; component code generation is now done
using maven plugins, not via an ant task.

Removed:
    myfaces/core/trunk_1.2.x/api/build.xml
Modified:
    myfaces/core/trunk_1.2.x/api/pom.xml

Modified: myfaces/core/trunk_1.2.x/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/core/trunk_1.2.x/api/pom.xml?rev=610188&r1=610187&r2=610188&view=diff
==============================================================================
--- myfaces/core/trunk_1.2.x/api/pom.xml (original)
+++ myfaces/core/trunk_1.2.x/api/pom.xml Tue Jan  8 14:00:31 2008
@@ -71,6 +71,11 @@
   </build>
   <profiles>
     <profile>
+      <!--
+        - Generate files that are good to have when doing a release to main
+        - repositories, but which are not wanted when doing a quick 
+        - "mvn install" before testing some code modifications.
+        -->
       <id>generate-assembly</id>
       <build>
         <plugins>
@@ -100,33 +105,6 @@
       </build>
     </profile>
     <profile>
-      <id>regenerate-component-code</id>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>regenerate-component-code-parts</id>
-                <phase>process-sources</phase>
-                <goals>
-                  <goal>run</goal>
-                </goals>
-                <configuration>
-                  <tasks>
-                    <property value="${project.basedir}/src/main/java" name="src.dir" />
-                    <ant inheritRefs="true" inheritAll="true" antfile="build.xml" dir="${project.basedir}">
-                      <target name="generate-components" />
-                    </ant>
-                  </tasks>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    <profile>
       <!-- This plugin verifies the binary compablity with the jsf api of the RI
            TODO: add this to the normal build if 2.1 (or higher) of clirr-maven-plugin is released
            In the meantime to use this plugin it must be installed manually from
@@ -164,6 +142,10 @@
   </profiles>
   <dependencies>
     <dependency>
+       <!-- 
+         - The file with config metadata for generating component classes. The contents
+         - of this jarfile are processed using the maven-faces-plugin.
+         -->
        <groupId>org.apache.myfaces.core</groupId>
        <artifactId>myfaces-build</artifactId>
        <version>1.2.1-SNAPSHOT</version>