You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sc...@apache.org on 2016/12/27 22:32:17 UTC

svn commit: r1776211 - /maven/plugins/trunk/maven-dependency-plugin/src/it/projects/copy-from-remote-repository/verify.groovy

Author: schulte
Date: Tue Dec 27 22:32:17 2016
New Revision: 1776211

URL: http://svn.apache.org/viewvc?rev=1776211&view=rev
Log:
[MNG-5457] Show repository id when downloading or uploading from/to a remote repository

o Updated to account for recent log messages in 3.4+.


Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/it/projects/copy-from-remote-repository/verify.groovy

Modified: maven/plugins/trunk/maven-dependency-plugin/src/it/projects/copy-from-remote-repository/verify.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/it/projects/copy-from-remote-repository/verify.groovy?rev=1776211&r1=1776210&r2=1776211&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/it/projects/copy-from-remote-repository/verify.groovy (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/it/projects/copy-from-remote-repository/verify.groovy Tue Dec 27 22:32:17 2016
@@ -23,8 +23,8 @@ File buildLog = new File( basedir, 'buil
 assert buildLog.exists()
 String expectedDownloadingPattern = "Downloading.*: file:///" + basedir + "/repo/org/apache/maven/its/dependency/fake-remote-copy/1\\.0/fake-remote-copy-1\\.0\\.jar"
 String expectedDownloadedPattern = "Downloaded.*: file:///" + basedir + "/repo/org/apache/maven/its/dependency/fake-remote-copy/1\\.0/fake-remote-copy-1\\.0\\.jar"
-assert buildLog.text =~ expectedDownloadingPattern}
-assert buildLog.text =~ expectedDownloadedPattern}
+assert buildLog.text =~ expectedDownloadingPattern
+assert buildLog.text =~ expectedDownloadedPattern
 
 File copied = new File( basedir, 'target/dependency/fake-remote-copy-1.0.jar' )
 assert copied.exists()