You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2019/12/09 09:33:48 UTC

[camel-quarkus] branch master updated: chore: Fix JavaDoc generation on JDK 11

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

jamesnetherton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/master by this push:
     new 951b347  chore: Fix JavaDoc generation on JDK 11
951b347 is described below

commit 951b347ed4a7b580950db93b42743bde3932222d
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Dec 9 09:33:25 2019 +0000

    chore: Fix JavaDoc generation on JDK 11
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index 2566e8a..549450a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -364,6 +364,13 @@
                             <release>8</release>
                         </configuration>
                     </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <configuration>
+                            <release>8</release>
+                        </configuration>
+                    </plugin>
                 </plugins>
             </build>
         </profile>