This is an automated email from the ASF dual-hosted git repository.
gzurowski pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/main by this push:
new 38721876fc4 Javadoc fix (#1213)
38721876fc4 is described below
commit 38721876fc4c85778be641e2939a425d5b11a70c
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Sep 9 09:47:56 2024 +0200
Javadoc fix (#1213)
* Add version to camel-solr dependency
* CSB: Fix maven javadoc plugin
---------
Co-authored-by: Gregor Zurowski <[email protected]>
---
pom.xml | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/pom.xml b/pom.xml
index 3e192d4b02a..70a766ac569 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,13 +123,14 @@
<jakarta-jaxb-version>4.0.0</jakarta-jaxb-version>
<jaxb-version>2.3.0</jaxb-version>
<maven-compiler-plugin-version>3.11.0</maven-compiler-plugin-version>
- <maven-javadoc-plugin-version>3.4.1</maven-javadoc-plugin-version>
+ <maven.compiler.release>${jdk.version}</maven.compiler.release>
+ <maven-javadoc-plugin-version>3.10.0</maven-javadoc-plugin-version>
<maven-surefire-plugin-version>3.1.2</maven-surefire-plugin-version>
<mycila-license-version>3.0</mycila-license-version>
<springdoc-version>2.2.0</springdoc-version>
<surefire.version>${maven-surefire-plugin-version}</surefire.version>
<swagger-parser-v3-version>2.1.10</swagger-parser-v3-version>
- <cyclonedx-maven-plugin-version>2.8.1</cyclonedx-maven-plugin-version>
+
<cyclonedx-maven-plugin-version>2.8.1</cyclonedx-maven-plugin-version>
</properties>
@@ -178,13 +179,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
- <attach>true</attach>
- <source>${jdk.version}</source>
- <quiet>true</quiet>
- <bottom>Apache Camel</bottom>
- <detectOfflineLinks>false</detectOfflineLinks>
- <javadocVersion>1.8.0</javadocVersion>
- <encoding>UTF-8</encoding>
+ <source>17</source>
+ <additionalOptions>${javadoc.opts}</additionalOptions>
+ <!-- disable Javadoc linting for buildung the release with
Java 11 -->
+ <doclint>none</doclint>
</configuration>
</plugin>
<plugin>
@@ -688,7 +686,8 @@
<goal>jar</goal>
</goals>
<configuration>
-
<additionalOptions>${javadoc.opts}</additionalOptions>
+ <source>17</source>
+ <doclint>none</doclint>
</configuration>
</execution>
</executions>