You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/01/26 12:02:32 UTC

[maven-reporting-exec] branch master updated: Fix Maven site build

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

sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-reporting-exec.git


The following commit(s) were added to refs/heads/master by this push:
     new cbab4a2  Fix Maven site build
cbab4a2 is described below

commit cbab4a2b838c9613dd04333c8235d668c4d8a3e7
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Mon Jan 24 17:11:27 2022 +0100

    Fix Maven site build
---
 .github/workflows/maven-verify.yml | 2 ++
 pom.xml                            | 4 ++++
 2 files changed, 6 insertions(+)

diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml
index bbd7786..d2315b6 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -25,3 +25,5 @@ jobs:
   build:
     name: Verify
     uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v2
+    with:
+      verify-fail-fast: false
diff --git a/pom.xml b/pom.xml
index 085c66c..0c856bd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -216,9 +216,13 @@
     <pluginManagement>
       <plugins>
         <plugin>
+          <!-- TODO remove once Maven parent POM will upgraded - MPOM-280 -->
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
           <version>3.3.1</version>
+          <configuration>
+            <detectLinks>false</detectLinks>
+          </configuration>
         </plugin>
       </plugins>
     </pluginManagement>