You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4php-dev@logging.apache.org by gr...@apache.org on 2009/11/12 07:44:50 UTC

svn commit: r835259 - /incubator/log4php/trunk/pom.xml

Author: grobmeier
Date: Thu Nov 12 06:44:49 2009
New Revision: 835259

URL: http://svn.apache.org/viewvc?rev=835259&view=rev
Log:
added gpg plugin for codesigning and deleted tagbase from release-plugin since we follow the standard layout

Modified:
    incubator/log4php/trunk/pom.xml

Modified: incubator/log4php/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/log4php/trunk/pom.xml?rev=835259&r1=835258&r2=835259&view=diff
==============================================================================
--- incubator/log4php/trunk/pom.xml (original)
+++ incubator/log4php/trunk/pom.xml Thu Nov 12 06:44:49 2009
@@ -278,10 +278,24 @@
         		<artifactId>maven-release-plugin</artifactId>
         		<version>2.0-beta-9</version>
         		<configuration>
-          			<tagBase>https://svn.apache.org/repos/asf/incubator/log4php/tags</tagBase>
-          			<goals>site assembly:assembly</goals>
+        			<goals>site assembly:assembly</goals>
         		</configuration>
       		</plugin>
+      		<plugin>
+	        	<artifactId>maven-gpg-plugin</artifactId>
+	            <configuration>
+	            	<passphrase>${gpg.passphrase}</passphrase>
+	            </configuration>
+	            <executions>
+	            	<execution>
+	                	<id>sign-artifacts</id>
+	                	<phase>verify</phase>
+	                	<goals>
+							<goal>sign</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
     	</plugins>
 	</build>
 	<dependencies>