You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2012/01/30 22:17:48 UTC

svn commit: r1238022 - /tapestry/tapestry5/trunk/build.gradle

Author: hlship
Date: Mon Jan 30 21:17:48 2012
New Revision: 1238022

URL: http://svn.apache.org/viewvc?rev=1238022&view=rev
Log:
Tweak the info logging for the uploadArtifacts build task

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1238022&r1=1238021&r2=1238022&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Mon Jan 30 21:17:48 2012
@@ -358,7 +358,8 @@ if (canDeploy) {
     destination "public_html/tapestry-releases"
 
     doFirst { 
-      logger.info "Uploading ${source.files} to people.apache.org."
+      logger.info "Uploading the following files to people.apache.org (as user '${userName}'):"
+      source.files.each {  logger.info "  $it"}
     }
   }