Repository: hadoop Updated Branches: refs/heads/trunk c25021fb7 -> 4009fa3a9
HADOOP-12064. [JDK8] Update guice version to 4.0. (ozawa) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/4009fa3a Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/4009fa3a Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/4009fa3a Branch: refs/heads/trunk Commit: 4009fa3a9272ddfe3825b1bd61b3ab9dc0124050 Parents: c25021f Author: Tsuyoshi Ozawa <[email protected]> Authored: Fri Jul 1 11:21:36 2016 -0700 Committer: Tsuyoshi Ozawa <[email protected]> Committed: Fri Jul 1 11:21:36 2016 -0700 ---------------------------------------------------------------------- hadoop-project/pom.xml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/4009fa3a/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index 8810eff..80b6995 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -84,6 +84,7 @@ <findbugs.version>3.0.0</findbugs.version> <tomcat.version>6.0.44</tomcat.version> + <guice.version>4.0</guice.version> <!-- define the Java language version used by the compiler --> <javac.version>1.8</javac.version> @@ -537,9 +538,9 @@ </dependency> <dependency> - <groupId>asm</groupId> + <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> - <version>3.2</version> + <version>5.0.4</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> @@ -571,19 +572,19 @@ <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> - <version>3.0</version> + <version>${guice.version}</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> - <version>2.2</version> + <version>3.2.0</version> </dependency> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-servlet</artifactId> - <version>3.0</version> + <version>${guice.version}</version> </dependency> <dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
