You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2007/05/29 16:25:16 UTC

svn commit: r542535 - /directory/project/trunk/pom.xml

Author: akarasulu
Date: Tue May 29 07:25:15 2007
New Revision: 542535

URL: http://svn.apache.org/viewvc?view=rev&rev=542535
Log:
make sure we sign when releasing

Modified:
    directory/project/trunk/pom.xml

Modified: directory/project/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/project/trunk/pom.xml?view=diff&rev=542535&r1=542534&r2=542535
==============================================================================
--- directory/project/trunk/pom.xml (original)
+++ directory/project/trunk/pom.xml Tue May 29 07:25:15 2007
@@ -20,4 +20,24 @@
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/directory/project/trunk</developerConnection>
   </scm>
  
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.0-alpha-3</version>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>