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 2020/03/20 09:55:57 UTC

[maven-javadoc-plugin] branch master updated: [MJAVADOC-555] Add reference to JDK-8232438: Remove ?is-external=true from external links

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 e821e6b  [MJAVADOC-555] Add reference to JDK-8232438: Remove ?is-external=true from external links
e821e6b is described below

commit e821e6b1d119ff851d90c87d0217fc700ad82a2c
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Mar 20 10:55:51 2020 +0100

    [MJAVADOC-555] Add reference to JDK-8232438: Remove ?is-external=true from external links
---
 src/it/projects/MJAVADOC-555_link-automatic-modules/verify.groovy | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/it/projects/MJAVADOC-555_link-automatic-modules/verify.groovy b/src/it/projects/MJAVADOC-555_link-automatic-modules/verify.groovy
index d1d18c9..0431b4a 100644
--- a/src/it/projects/MJAVADOC-555_link-automatic-modules/verify.groovy
+++ b/src/it/projects/MJAVADOC-555_link-automatic-modules/verify.groovy
@@ -32,7 +32,8 @@ def m = classFile.text =~ p
 
 assert m.hasGroup()
 try {
-  // Looks like as of Java 15-ea ?is-external=true is removed 
+  // https://bugs.openjdk.java.net/browse/JDK-8232438
+  // As of Java 15 ?is-external=true is removed 
   assert m[0][1].startsWith('https://guava.dev/releases/27.0.1-jre/api/docs/com/google/common/collect/Multimap.html')
 }
 catch(IndexOutOfBoundsException ioobe) {