You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2010/01/15 12:18:44 UTC

svn commit: r899598 - /struts/maven/trunk/struts2-archetype-blank/pom.xml

Author: lukaszlenart
Date: Fri Jan 15 11:18:44 2010
New Revision: 899598

URL: http://svn.apache.org/viewvc?rev=899598&view=rev
Log:
Added release profile to pom to avoid problems with signing files during release process

Modified:
    struts/maven/trunk/struts2-archetype-blank/pom.xml

Modified: struts/maven/trunk/struts2-archetype-blank/pom.xml
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-blank/pom.xml?rev=899598&r1=899597&r2=899598&view=diff
==============================================================================
--- struts/maven/trunk/struts2-archetype-blank/pom.xml (original)
+++ struts/maven/trunk/struts2-archetype-blank/pom.xml Fri Jan 15 11:18:44 2010
@@ -1,21 +1,44 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-  <parent>
-    <groupId>org.apache.struts</groupId>
-    <artifactId>struts2-parent</artifactId>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <parent>
+        <groupId>org.apache.struts</groupId>
+        <artifactId>struts2-parent</artifactId>
+        <version>2.2.0-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>struts2-archetype-blank</artifactId>
     <version>2.2.0-SNAPSHOT</version>
-  </parent>
+    <name>Struts 2 Archetypes - Blank</name>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/struts/maven/trunk/struts2-archetype-blank/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/struts/maven/trunk/struts2-archetype-blank/</developerConnection>
+        <url>http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-blank/</url>
+    </scm>
 
-  <modelVersion>4.0.0</modelVersion>
-  <artifactId>struts2-archetype-blank</artifactId>
-  <version>2.2.0-SNAPSHOT</version>
-  <name>Struts 2 Archetypes - Blank</name>
+    <profiles>
+        <profile>
+            <id>release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>sign-artifacts</id>
+                                <phase>verify</phase>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/struts/maven/trunk/struts2-archetype-blank/</connection>
-    <developerConnection>
-      scm:svn:https://svn.apache.org/repos/asf/struts/maven/trunk/struts2-archetype-blank/
-    </developerConnection>
-    <url>http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-blank/</url>
-  </scm>
 </project>