Author: olamy
Date: Wed Aug 29 13:56:32 2012
New Revision: 1378560

URL: http://svn.apache.org/viewvc?rev=1378560&view=rev
Log:
log checkout/update url used

Modified:
    
maven/sandbox/trunk/plugins/maven-scm-publish-plugin/src/main/java/org/apache/maven/plugins/scmpublish/AbstractScmPublishMojo.java

Modified: 
maven/sandbox/trunk/plugins/maven-scm-publish-plugin/src/main/java/org/apache/maven/plugins/scmpublish/AbstractScmPublishMojo.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-scm-publish-plugin/src/main/java/org/apache/maven/plugins/scmpublish/AbstractScmPublishMojo.java?rev=1378560&r1=1378559&r2=1378560&view=diff
==============================================================================
--- 
maven/sandbox/trunk/plugins/maven-scm-publish-plugin/src/main/java/org/apache/maven/plugins/scmpublish/AbstractScmPublishMojo.java
 (original)
+++ 
maven/sandbox/trunk/plugins/maven-scm-publish-plugin/src/main/java/org/apache/maven/plugins/scmpublish/AbstractScmPublishMojo.java
 Wed Aug 29 13:56:32 2012
@@ -52,19 +52,22 @@ public abstract class AbstractScmPublish
     /**
      * Location of the inventory file.
      */
-    @Parameter( property = "scmpublish.inventoryFile", 
defaultValue="${project.build.directory}/scmpublish-inventory.js" )
+    @Parameter( property = "scmpublish.inventoryFile",
+               defaultValue = 
"${project.build.directory}/scmpublish-inventory.js" )
     protected File inventoryFile;
 
     /**
      * Location of the scm publication tree.
      */
-    @Parameter( property = "scmpublish.pubScmUrl", defaultValue = 
"${project.distributionManagement.site.url}", required = true )
+    @Parameter( property = "scmpublish.pubScmUrl", defaultValue = 
"${project.distributionManagement.site.url}",
+               required = true )
     protected String pubScmUrl;
 
     /**
      * Location where the scm check-out is done.
      */
-    @Parameter( property = "scmpublish.checkoutDirectory", 
defaultValue="${project.build.directory}/scmpublish-checkout" )
+    @Parameter( property = "scmpublish.checkoutDirectory",
+               defaultValue = "${project.build.directory}/scmpublish-checkout" 
)
     protected File checkoutDirectory;
 
     /**
@@ -230,7 +233,7 @@ public abstract class AbstractScmPublish
     protected void checkoutExisting()
         throws MojoExecutionException
     {
-        logInfo( ( tryUpdate ? "Updating" : "Checking" ) + " out the pub tree 
..." );
+        logInfo( "%s out the pub tree from  %s ...", ( tryUpdate ? "Updating" 
: "Checking" ), pubScmUrl );
 
         if ( checkoutDirectory.exists() && !tryUpdate )
         {


Reply via email to