This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit a399235272ef9515b18613717667df097da517c5 Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Tue Apr 28 12:59:19 2020 +0200 Fix #1154 Generating JavaDoc is slown on Java 11 --- pom.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0b97a62..a34c6dc 100644 --- a/pom.xml +++ b/pom.xml @@ -105,7 +105,7 @@ <mycila-license.version>3.0</mycila-license.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version> - <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> + <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <maven-source-plugin.version>3.1.0</maven-source-plugin.version> <maven-assembly-plugin.version>3.1.1</maven-assembly-plugin.version> <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version> @@ -231,6 +231,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <version>${maven-javadoc-plugin.version}</version> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> @@ -566,6 +572,7 @@ <artifactId>maven-javadoc-plugin</artifactId> <configuration> <release>8</release> + <detectOfflineLinks>false</detectOfflineLinks> </configuration> </plugin> </plugins> @@ -707,7 +714,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> @@ -718,6 +724,7 @@ </executions> <configuration> <additionalOptions>${javadoc.opts}</additionalOptions> + <detectOfflineLinks>false</detectOfflineLinks> </configuration> </plugin> <!-- We want to sign the artifact, the POM, and all attached artifacts --> @@ -774,6 +781,7 @@ </goals> <configuration> <additionalOptions>${javadoc.opts}</additionalOptions> + <detectOfflineLinks>false</detectOfflineLinks> </configuration> </execution> </executions>