You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by ml...@apache.org on 2012/01/29 15:47:52 UTC

svn commit: r1237300 - /tapestry/tapestry5/branches/5.3/build.gradle

Author: mlusetti
Date: Sun Jan 29 14:47:51 2012
New Revision: 1237300

URL: http://svn.apache.org/viewvc?rev=1237300&view=rev
Log:
fix build script to sign the generated poms

Modified:
    tapestry/tapestry5/branches/5.3/build.gradle

Modified: tapestry/tapestry5/branches/5.3/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/branches/5.3/build.gradle?rev=1237300&r1=1237299&r2=1237300&view=diff
==============================================================================
--- tapestry/tapestry5/branches/5.3/build.gradle (original)
+++ tapestry/tapestry5/branches/5.3/build.gradle Sun Jan 29 14:47:51 2012
@@ -167,6 +167,8 @@ subprojects {
 
         project.deployer = repositories.mavenDeployer {
 
+          beforeDeployment { MavenDeployment deployment -> signPom(deployment) }
+
           repository(url: stagingUrl) {
             authentication(userName: deployUsername(), password: deployPassword())
           }