This is an automated email from the ASF dual-hosted git repository.
andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git
The following commit(s) were added to refs/heads/main by this push:
new 21dab4ebe7 Set doclint=none to make safe for java11
21dab4ebe7 is described below
commit 21dab4ebe7e0468991841e23cfc73c5779c264ed
Author: Andy Seaborne <[email protected]>
AuthorDate: Fri Aug 19 16:53:42 2022 +0100
Set doclint=none to make safe for java11
---
jena-core/pom.xml | 4 +++-
jena-iri/pom.xml | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/jena-core/pom.xml b/jena-core/pom.xml
index 6457b431b5..006323e4ef 100644
--- a/jena-core/pom.xml
+++ b/jena-core/pom.xml
@@ -180,7 +180,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
- <doclint>syntax</doclint>
+ <!-- OK for Java17 (compiling to Java11); not OK for Java11
+ <doclint>syntax</doclint>
+ -->
<author>true</author>
<version>true</version>
<show>public</show>
diff --git a/jena-iri/pom.xml b/jena-iri/pom.xml
index c039c1f735..eadc7399ef 100644
--- a/jena-iri/pom.xml
+++ b/jena-iri/pom.xml
@@ -111,7 +111,9 @@
</execution>
</executions>
<configuration>
- <doclint>syntax</doclint>
+ <!-- OK for Java17 (compiling to Java11); not OK for Java11
+ <doclint>syntax</doclint>
+ -->
<version>true</version>
<show>public</show>
<quiet>true</quiet>