Repository: bookkeeper Updated Branches: refs/heads/master 6d71b8292 -> d5cea821c
BOOKKEEPER-932: Move to JDK 8 Author: Matteo Merli <[email protected]> Reviewers: Sijie Guo <[email protected]> Closes #48 from merlimat/bk-932 Project: http://git-wip-us.apache.org/repos/asf/bookkeeper/repo Commit: http://git-wip-us.apache.org/repos/asf/bookkeeper/commit/d5cea821 Tree: http://git-wip-us.apache.org/repos/asf/bookkeeper/tree/d5cea821 Diff: http://git-wip-us.apache.org/repos/asf/bookkeeper/diff/d5cea821 Branch: refs/heads/master Commit: d5cea821c2201db77bd75a9bc48ff4bf9f483ce2 Parents: 6d71b82 Author: Matteo Merli <[email protected]> Authored: Mon Jul 11 14:06:34 2016 -0700 Committer: Sijie Guo <[email protected]> Committed: Mon Jul 11 14:06:34 2016 -0700 ---------------------------------------------------------------------- pom.xml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bookkeeper/blob/d5cea821/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4f40773..27ffbf0 100644 --- a/pom.xml +++ b/pom.xml @@ -52,14 +52,14 @@ <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> - <version>2.5.2</version> + <version>3.0.3</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> - <version>3.0</version> + <version>3.5.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> <compilerArguments> <Werror /> <Xlint:deprecation /> @@ -81,8 +81,10 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>2.8</version> + <version>2.10.3</version> <configuration> + <!-- Avoid for missing javadoc comments to be marked as errors --> + <additionalparam>-Xdoclint:none</additionalparam> <subpackages>org.apache.bookkeeper.client:org.apache.bookkeeper.conf</subpackages> <groups> <group>
