You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/03/05 21:17:26 UTC

[maven-project-info-reports-plugin] 01/01: Correct failed build: upstate link to https

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch build-problem
in repository https://gitbox.apache.org/repos/asf/maven-project-info-reports-plugin.git

commit 07f5f76f1e1fe8881fe3dbe03c4623beeb635492
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Thu Mar 5 22:17:21 2020 +0100

    Correct failed build: upstate link to https
---
 src/it/full-pom/verify.bsh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/it/full-pom/verify.bsh b/src/it/full-pom/verify.bsh
index ba90103..df74b5a 100644
--- a/src/it/full-pom/verify.bsh
+++ b/src/it/full-pom/verify.bsh
@@ -102,9 +102,9 @@ try
     // MPIR-216: dependency with range
     File dependencyMgmt = new File( siteDir, "dependency-management.html");
     content = FileUtils.fileRead( dependencyMgmt, "UTF-8" );
-    if ( !content.contains( "http://maven.apache.org/doxia/doxia/doxia-sink-api/" ) )
+    if ( !content.contains( "https://maven.apache.org/doxia/doxia/doxia-sink-api/" ) )
     {
-        System.err.println( "MPIR-216: dependency-management doesn't contain doxia-sink-api url http://maven.apache.org/doxia/doxia/doxia-sink-api/" );
+        System.err.println( "MPIR-216: dependency-management doesn't contain doxia-sink-api url https://maven.apache.org/doxia/doxia/doxia-sink-api/" );
         return false;
     }