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 2023/02/26 13:24:37 UTC

[maven-javadoc-plugin] branch openj9-footer updated (58c50681 -> 6a3c8852)

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

slachiewicz pushed a change to branch openj9-footer
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git


 discard 58c50681 check
     new 78439192 (doc) Remove deprecated maven-changes-plugin (MPOM-348)
     new 6a3c8852 (doc) ci fix: adopt-openj9 does not support the footer param

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   (58c50681)
            \
             N -- N -- N   refs/heads/openj9-footer (6a3c8852)

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 2 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:
 pom.xml                                              | 20 --------------------
 .../maven/plugins/javadoc/JavadocReportTest.java     |  4 ++--
 2 files changed, 2 insertions(+), 22 deletions(-)


[maven-javadoc-plugin] 02/02: (doc) ci fix: adopt-openj9 does not support the footer param

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

slachiewicz pushed a commit to branch openj9-footer
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git

commit 6a3c8852e67ee0b7108d5987c28068deffa2f13d
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Feb 26 13:40:26 2023 +0100

    (doc) ci fix: adopt-openj9 does not support the footer param
---
 .github/workflows/maven.yml                                       | 2 +-
 .../java/org/apache/maven/plugins/javadoc/JavadocReportTest.java  | 8 ++++++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index e5c93cb7..a2599f30 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -26,5 +26,5 @@ jobs:
     name: Verify
     uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v2
     with:
-      jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]'
+      jdk-distribution-matrix: '[ "adopt-openj9" ]'
       matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"}]'
diff --git a/src/test/java/org/apache/maven/plugins/javadoc/JavadocReportTest.java b/src/test/java/org/apache/maven/plugins/javadoc/JavadocReportTest.java
index 502e6d66..f427588c 100644
--- a/src/test/java/org/apache/maven/plugins/javadoc/JavadocReportTest.java
+++ b/src/test/java/org/apache/maven/plugins/javadoc/JavadocReportTest.java
@@ -879,8 +879,12 @@ public class JavadocReportTest extends AbstractMojoTestCase {
         content = readFile(packageSummary);
         assertThat(content)
                 .contains("Top - Copyright &#169; All rights reserved.")
-                .contains("Header - Copyright &#169; All rights reserved.")
-                .contains("Footer - Copyright &#169; All rights reserved.");
+                .contains("Header - Copyright &#169; All rights reserved.");
+
+        // IBM dist of adopt-openj9 does not support the footer param
+        if (!System.getProperty("java.vm.name").contains("OpenJ9")) {
+            assertThat(content).contains("Footer - Copyright &#169; All rights reserved.");
+        }
     }
 
     /**


[maven-javadoc-plugin] 01/02: (doc) Remove deprecated maven-changes-plugin (MPOM-348)

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

slachiewicz pushed a commit to branch openj9-footer
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git

commit 7843919256ae551aa86918f3c5708eb8b7a76c7d
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Feb 26 14:21:44 2023 +0100

    (doc) Remove deprecated maven-changes-plugin (MPOM-348)
---
 pom.xml | 20 --------------------
 1 file changed, 20 deletions(-)

diff --git a/pom.xml b/pom.xml
index af7002db..f6ee4218 100644
--- a/pom.xml
+++ b/pom.xml
@@ -551,26 +551,6 @@ under the License.
               </locales>
             </configuration>
           </plugin>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-changes-plugin</artifactId>
-            <configuration>
-              <!-- For JIRA-report -->
-              <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix Version</columnNames>
-              <onlyCurrentVersion>true</onlyCurrentVersion>
-              <resolutionIds>Fixed</resolutionIds>
-              <sortColumnNames>Type,Key</sortColumnNames>
-              <maxEntries>1000</maxEntries>
-              <!-- MCHANGES-124 -->
-            </configuration>
-            <reportSets>
-              <reportSet>
-                <reports>
-                  <report>jira-report</report>
-                </reports>
-              </reportSet>
-            </reportSets>
-          </plugin>
         </plugins>
       </reporting>
     </profile>