You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/07/25 20:38:38 UTC

[commons-codec] branch master updated: Specify source for JDK 11+ javadoc tool to ignore the 'unnamed' module.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 177d1bd  Specify source for JDK 11+ javadoc tool to ignore the 'unnamed' module.
177d1bd is described below

commit 177d1bd283b54974a41ccfe8d6b3c055bd76ba03
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Thu Jul 25 21:38:34 2019 +0100

    Specify source for JDK 11+ javadoc tool to ignore the 'unnamed' module.
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index cab0548..f63db04 100644
--- a/pom.xml
+++ b/pom.xml
@@ -328,6 +328,15 @@ limitations under the License.
           <headerFile>${basedir}/LICENSE-header.txt</headerFile>
         </configuration>
       </plugin>
+      <!-- Specify source for JDK 11+ javadoc tool to ignore the 'unamed' module.
+           See: https://bugs.openjdk.java.net/browse/JDK-8212233.
+           To be removed with parent 49. -->
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <source>${maven.compiler.source}</source>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <reporting>