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 b90244aa85 Require source=8 for jena-querybuilder
new 2d681fc5e6 Merge pull request #1512 from afs/javadoc-fixes
b90244aa85 is described below
commit b90244aa85d76af6cab9cdd65936321576f9b39f
Author: Andy Seaborne <[email protected]>
AuthorDate: Thu Sep 1 11:58:46 2022 +0100
Require source=8 for jena-querybuilder
---
jena-extras/jena-querybuilder/pom.xml | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/jena-extras/jena-querybuilder/pom.xml
b/jena-extras/jena-querybuilder/pom.xml
index 2e3efcb7ad..a22a58ac22 100644
--- a/jena-extras/jena-querybuilder/pom.xml
+++ b/jena-extras/jena-querybuilder/pom.xml
@@ -110,6 +110,27 @@
</execution>
</executions>
</plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <detectJavaApiLink>false</detectJavaApiLink>
+ <source>8</source>
+ <doclint>none</doclint>
+ <notimestamp>true</notimestamp>
+ <quiet>true</quiet>
+ <version>true</version>
+ <show>public</show>
+ <encoding>UTF-8</encoding>
+
+ <windowtitle>${project.name} ${project.version}</windowtitle>
+ <doctitle>${project.name} ${project.version}</doctitle>
+ <bottom>Licensed under the Apache License, Version 2.0</bottom>
+
+ </configuration>
+ </plugin>
+
</plugins>
</build>
</project>