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 2021/10/24 14:12:03 UTC

[maven-javadoc-plugin] branch fix-ci created (now 0dda188)

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

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


      at 0dda188  (doc) fix failing IT with Java 18 - warning about missing doc for default constructor

This branch includes the following new commits:

     new 0dda188  (doc) fix failing IT with Java 18 - warning about missing doc for default constructor

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-javadoc-plugin] 01/01: (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 fix-ci
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git

commit 0dda1889b63e65a4f23246d3db0cfae80a256f46
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 e5960e3..935cbd2 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
 {
 }