HBASE-15011 turn off the jdk8 javadoc linter.
This commit is contained in:
parent
9b8895ba29
commit
822fead744
27
pom.xml
27
pom.xml
|
@ -515,6 +515,11 @@
|
||||||
<build>
|
<build>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>${javadoc.version}</version>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||||
|
@ -1792,6 +1797,26 @@
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<profiles>
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>build-with-jdk8</id>
|
||||||
|
<activation>
|
||||||
|
<jdk>1.8</jdk>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<!-- TODO HBASE-15041 clean up our javadocs so jdk8 linter can be used -->
|
||||||
|
<additionalparam>-Xdoclint:none</additionalparam>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
<!-- profile activated by the Jenkins patch testing job -->
|
<!-- profile activated by the Jenkins patch testing job -->
|
||||||
<profile>
|
<profile>
|
||||||
<id>jenkins.patch</id>
|
<id>jenkins.patch</id>
|
||||||
|
@ -2780,7 +2805,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>2.10.3</version>
|
<version>${javadoc.version}</version>
|
||||||
<reportSets>
|
<reportSets>
|
||||||
<!-- Dev API -->
|
<!-- Dev API -->
|
||||||
<reportSet>
|
<reportSet>
|
||||||
|
|
Loading…
Reference in New Issue