You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jz...@apache.org on 2022/04/12 12:54:26 UTC

[opennlp] branch master updated: OPENNLP-1354: Fixing javadoc generation on Java 11. (#411)

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

jzemerick pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/opennlp.git


The following commit(s) were added to refs/heads/master by this push:
     new 17b1a710 OPENNLP-1354: Fixing javadoc generation on Java 11. (#411)
17b1a710 is described below

commit 17b1a71089523c16e2032c8164bcdcf75c2a6471
Author: Jeff Zemerick <je...@mtnfog.com>
AuthorDate: Tue Apr 12 05:54:20 2022 -0700

    OPENNLP-1354: Fixing javadoc generation on Java 11. (#411)
---
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f5208a67..26e71be0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -352,6 +352,8 @@
 				<version>3.1.1</version>
 				<configuration>
 					<doclint>none</doclint>
+					<source>8</source>
+					<sourcepath>src/main/java</sourcepath>
 				</configuration>
 				<executions>
 					<execution>
@@ -364,7 +366,6 @@
 							<show>public</show>
 							<quiet>false</quiet>
 							<use>false</use> <!-- Speeds up the build of the javadocs -->
-							<source>8</source>
 						</configuration>
 					</execution>
 				</executions>