ACCUMULO-4102 Configure javadoc plugin for jdk8
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/4169a12b
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/4169a12b
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/4169a12b
Branch: refs/heads/1.7
Commit: 4169a12b52c6e6744a975eab60f8b29fdcb2f22b
Parents: f38d5e7
Author: Christopher Tubbs <ctubbsii@apache.org>
Authored: Fri Jan 8 17:43:57 2016 -0500
Committer: Christopher Tubbs <ctubbsii@apache.org>
Committed: Fri Jan 8 17:43:57 2016 -0500
----------------------------------------------------------------------
pom.xml | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/accumulo/blob/4169a12b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index ea40f31..6138dbc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1401,11 +1401,28 @@
<profile>
<id>jdk8</id>
<activation>
- <jdk>[1.8,)</jdk>
+ <jdk>[1.8,1.9)</jdk>
</activation>
<properties>
<findbugs.version>3.0.1</findbugs.version>
</properties>
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <encoding>${project.reporting.outputEncoding}</encoding>
+ <quiet>true</quiet>
+ <javadocVersion>1.8</javadocVersion>
+ <additionalJOption>-J-Xmx512m</additionalJOption>
+ <additionalparam>-Xdoclint:all,-Xdoclint:-missing</additionalparam>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
</profile>
</profiles>
</project>
|