You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/02/08 13:30:35 UTC

[maven-javadoc-plugin] branch master updated: Fix javadoc upgrade maven-jxr-plugin

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 80c796e  Fix javadoc upgrade maven-jxr-plugin
80c796e is described below

commit 80c796e13baf20a47d64f0ede371b9594f77d83f
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Feb 8 14:30:29 2019 +0100

    Fix javadoc
    upgrade maven-jxr-plugin
---
 pom.xml                                                              | 5 +++++
 .../java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java   | 3 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 334107f..58f32e9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -348,6 +348,11 @@ under the License.
             </excludes>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jxr-plugin</artifactId>
+          <version>3.0.0</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
diff --git a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
index 1fb2fc9..434c148 100644
--- a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
+++ b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
@@ -1314,7 +1314,7 @@ public abstract class AbstractJavadocMojo
     /**
      * Specifies the destination directory where javadoc saves the generated HTML files.
      * <br>
-     * @see <a href="http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javadoc.html#d">d</a> option
+     * @see <a href="http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javadoc.html#d">javadoc d</a>
      */
     @Parameter( property = "destDir", alias = "destDir", defaultValue = "${project.build.directory}/apidocs",
                     required = true )
@@ -6138,7 +6138,6 @@ public abstract class AbstractJavadocMojo
      *         or the {@link #javadocRuntimeVersion}, or <code>null</code> if not defined.
      * @see #detectJavaApiLink
      * @see #javaApiLinks
-     * @see #DEFAULT_JAVA_API_LINKS
      * @see <a href="http://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html#source">source parameter</a>
      * @since 2.6
      */