This is an automated email from the ASF dual-hosted git repository. dmvolod pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 53fdc4e Fix components build with javadoc generation when JAVA_HOME not explicitly defined When JAVA_HOME is not explicitly defined maven-javadoc-plugin unable to define javadoc utility location 53fdc4e is described below commit 53fdc4e4f3480b801f07c38eb695e45c6fb1bc0a Author: Dmitry Volodin <dmvo...@gmail.com> AuthorDate: Fri Apr 26 10:38:57 2019 +0300 Fix components build with javadoc generation when JAVA_HOME not explicitly defined When JAVA_HOME is not explicitly defined maven-javadoc-plugin unable to define javadoc utility location --- parent/pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/parent/pom.xml b/parent/pom.xml index dfb0285..97cb531 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -5086,6 +5086,9 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-javadoc-plugin</artifactId> <version>${project.version}</version> + <configuration> + <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> + </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId>