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

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 58dfe55  Skip javadoc on Java 12+ to workaround 
https://bugs.openjdk.java.net/browse/JDK-8212233 which causes javadoc to fail 
with "Exit code: 1 - javadoc: error - The code being documented uses modules 
but the packages defined in https://docs.oracle.com/javase/7/docs/api/ are in 
the unnamed module."
58dfe55 is described below

commit 58dfe5517d188e1daf20e507624fd851a87e9ba5
Author: pascalschumacher <pascalschumac...@gmx.net>
AuthorDate: Sat Apr 27 10:19:11 2019 +0200

    Skip javadoc on Java 12+ to workaround 
https://bugs.openjdk.java.net/browse/JDK-8212233 which causes javadoc to fail 
with "Exit code: 1 - javadoc: error - The code being documented uses modules 
but the packages defined in https://docs.oracle.com/javase/7/docs/api/ are in 
the unnamed module."
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index e8518ed..410e11c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -905,9 +905,9 @@
     </profile>
 
     <profile>
-      <id>java11</id>
+      <id>java11+</id>
       <activation>
-        <jdk>11</jdk>
+        <jdk>[11,)</jdk>
       </activation>
       <properties>
         <!-- workaround for https://bugs.openjdk.java.net/browse/JDK-8212233

Reply via email to