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/24 16:26:42 UTC

[maven-reporting-exec] branch fix-site updated (d25a54b -> 5d5a19a)

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

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


 discard d25a54b  Fix Maven site build
     new 5d5a19a  Fix Maven site build

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d25a54b)
            \
             N -- N -- N   refs/heads/fix-site (5d5a19a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 .github/workflows/maven-verify.yml | 2 ++
 1 file changed, 2 insertions(+)

[maven-reporting-exec] 01/01: Fix Maven site build

Posted by sj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 5d5a19a5c930f07cf58acffe6ed427a5d9d8fdbb
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                            | 12 ++++++++++++
 2 files changed, 14 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 1d71d0e..b8eb642 100644
--- a/pom.xml
+++ b/pom.xml
@@ -243,6 +243,18 @@
   </dependencies>
 
   <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <!-- TODO remove once Maven parent POM will upgraded - MPOM-280 -->
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <detectLinks>false</detectLinks>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
     <plugins>
       <plugin><!-- shade Xpp3DomUtils that does not require Xpp3Dom.getInputLocation(): see MSHARED-921 -->
         <groupId>org.apache.maven.plugins</groupId>