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 18:31:57 UTC

[maven-javadoc-plugin] branch MJAVADOC-689 updated (8b774a2 -> ab9c1ff)

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

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


 discard 8b774a2  [MJAVADOC-689] Upgrade clirr-maven-plugin from 2.2.2 to 2.8
     add 790f9bb  (doc) Add Java 18-ea to tests
     add 420e9a5  (doc) switch to Temurin JDK
     add 99c4b8b  Bump mockito-core from 3.12.0 to 4.0.0
     add e443840  Bump actions/checkout from 2.3.4 to 2.3.5
     new ab9c1ff  [MJAVADOC-689] Upgrade clirr-maven-plugin from 2.2.2 to 2.8

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   (8b774a2)
            \
             N -- N -- N   refs/heads/MJAVADOC-689 (ab9c1ff)

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.yml | 6 +++---
 pom.xml                     | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

[maven-javadoc-plugin] 01/01: [MJAVADOC-689] Upgrade clirr-maven-plugin from 2.2.2 to 2.8

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

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

commit ab9c1ffe5cade99dc7cde182646f33e39184dd52
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Oct 2 13:15:17 2021 +0200

    [MJAVADOC-689] Upgrade clirr-maven-plugin from 2.2.2 to 2.8
---
 .../org/apache/maven/plugins/javadoc/AbstractFixJavadocMojo.java    | 4 ++--
 src/site/apt/examples/fix-javadocs.apt.vm                           | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/javadoc/AbstractFixJavadocMojo.java b/src/main/java/org/apache/maven/plugins/javadoc/AbstractFixJavadocMojo.java
index fac56cc..5b37184 100644
--- a/src/main/java/org/apache/maven/plugins/javadoc/AbstractFixJavadocMojo.java
+++ b/src/main/java/org/apache/maven/plugins/javadoc/AbstractFixJavadocMojo.java
@@ -200,9 +200,9 @@ public abstract class AbstractFixJavadocMojo
     private static final String CLIRR_MAVEN_PLUGIN_ARTIFACTID = "clirr-maven-plugin";
 
     /**
-     * The latest Clirr Maven plugin version <code>2.2.2</code> *
+     * The latest Clirr Maven plugin version <code>2.8</code> *
      */
-    private static final String CLIRR_MAVEN_PLUGIN_VERSION = "2.2.2";
+    private static final String CLIRR_MAVEN_PLUGIN_VERSION = "2.8";
 
     /**
      * The Clirr Maven plugin goal <code>check</code> *
diff --git a/src/site/apt/examples/fix-javadocs.apt.vm b/src/site/apt/examples/fix-javadocs.apt.vm
index a0accdf..dd7990e 100644
--- a/src/site/apt/examples/fix-javadocs.apt.vm
+++ b/src/site/apt/examples/fix-javadocs.apt.vm
@@ -107,8 +107,8 @@ mvn javadoc:fix -DcomparisonVersion=1.0
 
 ** Using another Clirr version
 
-  By default, the <fix> and <test-fix> goals use the {{{http://mojo.codehaus.org/clirr-maven-plugin/}clirr-maven-plugin}},
-  version <<<2.2.2>>>. To use another version, you need to add a dependency in the Javadoc plugin, similar to the
+  By default, the <fix> and <test-fix> goals use the {{{https://www.mojohaus.org/clirr-maven-plugin/}clirr-maven-plugin}},
+  version <<<2.8>>>. To use another version, you need to add a dependency in the Javadoc plugin, similar to the
   following:
 
 +-----+
@@ -127,7 +127,7 @@ mvn javadoc:fix -DcomparisonVersion=1.0
           <dependency>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>clirr-maven-plugin</artifactId>
-            <version>2.3-SNAPSHOT</version>
+            <version>2.9-SNAPSHOT</version>
           </dependency>
         </dependencies>
       </plugin>