Skip to content

Commit

Permalink
Disable javadoc error (#6371)
Browse files Browse the repository at this point in the history
* Disable javadoc error

Actual fixes of the javadoc will be followed up

* Remove duplicated configuration

* Update javadoc plugin version
  • Loading branch information
TeBoring authored Jul 23, 2019
1 parent 325ed81 commit fce3613
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@
<goals>
<goal>jar</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
</configuration>
</execution>
</executions>
</plugin>
Expand Down Expand Up @@ -188,13 +191,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit fce3613

Please sign in to comment.