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:34:51 UTC

[maven-project-info-reports-plugin] branch master updated: Corrected failed IT test: update link for Doxia api site to https

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

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


The following commit(s) were added to refs/heads/master by this push:
     new eb1606b  Corrected failed IT test: update link for Doxia api site to https
eb1606b is described below

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

    Corrected failed IT test: update link for Doxia api site 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;
     }