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 16:08:20 UTC

[maven-javadoc-plugin] branch java20 created (now f08ac5fe)

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

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


      at f08ac5fe Try with Java 20-ea

This branch includes the following new commits:

     new 9eab485b (doc) fix failing IT with Java 18 - warning about missing doc for default constructor
     new f08ac5fe Try with Java 20-ea

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.



[maven-javadoc-plugin] 01/02: (doc) fix failing IT with Java 18 - warning about missing doc for default constructor

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

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

commit 9eab485b6b7e109e2031ab29c962b35cae7655fe
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Oct 24 16:11:43 2021 +0200

    (doc) fix failing IT with Java 18 - warning about missing doc for default constructor
---
 src/it/projects/MJAVADOC-528/src/main/java/foo/bar/MyClass.java | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/it/projects/MJAVADOC-528/src/main/java/foo/bar/MyClass.java b/src/it/projects/MJAVADOC-528/src/main/java/foo/bar/MyClass.java
index e5960e38..935cbd27 100644
--- a/src/it/projects/MJAVADOC-528/src/main/java/foo/bar/MyClass.java
+++ b/src/it/projects/MJAVADOC-528/src/main/java/foo/bar/MyClass.java
@@ -19,6 +19,9 @@ package foo.bar;
  * under the License.
  */
 
+/**
+ * MyClass
+ */
 public class MyClass
 {
 }


[maven-javadoc-plugin] 02/02: Try with Java 20-ea

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

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

commit f08ac5fe35119ecd89ae5df1f1be1cce1f1fe72f
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Feb 26 17:08:07 2023 +0100

    Try with Java 20-ea
---
 .github/workflows/maven.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index b0b4e3b3..bd95e987 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -26,5 +26,7 @@ jobs:
     name: Verify
     uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3
     with:
+      jdk-matrix: '[ "20-ea" ]'
       jdk-distribution-matrix: '[ "temurin", "zulu", "microsoft", "liberica", "adopt-openj9" ]'
       matrix-exclude: '[{ "jdk": "8", "distribution": "microsoft"}]'
+      verify-fail-fast: false