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:25 UTC

[maven-project-info-reports-plugin] branch build-problem created (now 07f5f76)

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

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


      at 07f5f76  Correct failed build: upstate link to https

This branch includes the following new commits:

     new 07f5f76  Correct failed build: upstate link to https

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by sl...@apache.org.
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;
     }