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

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

Author: mlusetti
Date: Sun Jan 29 17:13:25 2012
New Revision: 1237356

URL: http://svn.apache.org/viewvc?rev=1237356&view=rev
Log:
fix Jenkins build

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=1237356&r1=1237355&r2=1237356&view=diff
==============================================================================
--- tapestry/tapestry5/branches/5.3/build.gradle (original)
+++ tapestry/tapestry5/branches/5.3/build.gradle Sun Jan 29 17:13:25 2012
@@ -167,7 +167,9 @@ subprojects {
 
         project.deployer = repositories.mavenDeployer {
 
-          beforeDeployment { MavenDeployment deployment -> signPom(deployment) }
+          if (doSign) {
+            beforeDeployment { MavenDeployment deployment -> signPom(deployment) }
+	  }
 
           repository(url: stagingUrl) {
             authentication(userName: deployUsername(), password: deployPassword())