You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by mu...@apache.org on 2008/11/18 05:56:21 UTC

svn commit: r718483 - /struts/struts2/branches/release_process/pom.xml

Author: musachy
Date: Mon Nov 17 20:56:21 2008
New Revision: 718483

URL: http://svn.apache.org/viewvc?rev=718483&view=rev
Log:
move j4 generation back to its own profile(getting ready to drop 1.4 support)

Modified:
    struts/struts2/branches/release_process/pom.xml

Modified: struts/struts2/branches/release_process/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/branches/release_process/pom.xml?rev=718483&r1=718482&r2=718483&view=diff
==============================================================================
--- struts/struts2/branches/release_process/pom.xml (original)
+++ struts/struts2/branches/release_process/pom.xml Mon Nov 17 20:56:21 2008
@@ -92,6 +92,34 @@
             </modules>
         </profile>
         <profile>
+            <id>j4</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>retrotranslator-maven-plugin</artifactId>
+                        <version>1.0-alpha-3</version>
+                        <executions>
+                            <execution>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>translate-project</goal>
+                                </goals>
+                                <configuration>
+                                    <verify>false</verify>
+                                    <failonwarning>true</failonwarning>
+                                    <lazy>true</lazy>
+                                    <advanced>true</advanced>
+                                    <verbose>false</verbose>
+                                    <destdir>${project.build.directory}/classes-retro</destdir>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
             <id>release</id>
             <activation>
                 <property>
@@ -254,27 +282,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>retrotranslator-maven-plugin</artifactId>
-                <version>1.0-alpha-3</version>
-                <executions>
-                    <execution>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>translate-project</goal>
-                        </goals>
-                        <configuration>
-                            <verify>false</verify>
-                            <failonwarning>true</failonwarning>
-                            <lazy>true</lazy>
-                            <advanced>true</advanced>
-                            <verbose>false</verbose>
-                            <destdir>${project.build.directory}/classes-retro</destdir>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
             <!-- Commenting out the license plugin, until it works like we want.
             To use the "license:format" goal, remove the "core" module before running,
             otherwise it will ignore the file exclusions.