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/24 06:08:28 UTC

svn commit: r541148 - in /directory/shared/branches/0.9.5: ./ pom.xml

Author: akarasulu
Date: Wed May 23 21:08:27 2007
New Revision: 541148

URL: http://svn.apache.org/viewvc?view=rev&rev=541148
Log:
use the gpg plugin to generate signature files on deploy

Modified:
    directory/shared/branches/0.9.5/   (props changed)
    directory/shared/branches/0.9.5/pom.xml

Propchange: directory/shared/branches/0.9.5/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed May 23 21:08:27 2007
@@ -1,5 +1,6 @@
 *.iml
 *.ipr
 *.iws
+target
 
 nbproject

Modified: directory/shared/branches/0.9.5/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/0.9.5/pom.xml?view=diff&rev=541148&r1=541147&r2=541148
==============================================================================
--- directory/shared/branches/0.9.5/pom.xml (original)
+++ directory/shared/branches/0.9.5/pom.xml Wed May 23 21:08:27 2007
@@ -22,7 +22,6 @@
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/directory/shared/branches/0.9.5</developerConnection>
   </scm>
 
-
   <build>
     <plugins>
       <plugin>
@@ -31,6 +30,19 @@
         <configuration>
           <tagBase>https://svn.apache.org/repos/asf/directory/shared/releases</tagBase>
         </configuration>
+      </plugin>
+      <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>