Repository: incubator-sentry Updated Branches: refs/heads/master f5989d28d -> 3d05db9b0
SENTRY-1111: Apache Sentry should depend on the same version of metrics-core as hadoop (Bhooshan Mogal, Reviewed by: Hao Hao and Sravya Tirukkovalur) Change-Id: I480c70e711add9cfdd4f32421100cf115aea83ac Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/3d05db9b Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/3d05db9b Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/3d05db9b Branch: refs/heads/master Commit: 3d05db9b06fb63194ce4373b57623d6c499ac2e1 Parents: f5989d2 Author: hahao <[email protected]> Authored: Wed Mar 9 23:20:40 2016 -0800 Committer: hahao <[email protected]> Committed: Wed Mar 9 23:21:12 2016 -0800 ---------------------------------------------------------------------- pom.xml | 2 +- sentry-provider/sentry-provider-db/pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/3d05db9b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5c31bf4..3cf9508 100644 --- a/pom.xml +++ b/pom.xml @@ -86,7 +86,7 @@ limitations under the License. <maven.antrun.plugin.version>1.7</maven.antrun.plugin.version> <maven.eclipse.plugin.version>2.9</maven.eclipse.plugin.version> <maven.enforcer.plugin.version>1.3.1</maven.enforcer.plugin.version> - <metrics.version>3.1.0</metrics.version> + <metrics.version>3.0.1</metrics.version> <mockito.version>1.8.5</mockito.version> <objenesis.version>1.2</objenesis.version> <pig.version>0.12.0</pig.version> http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/3d05db9b/sentry-provider/sentry-provider-db/pom.xml ---------------------------------------------------------------------- diff --git a/sentry-provider/sentry-provider-db/pom.xml b/sentry-provider/sentry-provider-db/pom.xml index c32793c..1dbfad4 100644 --- a/sentry-provider/sentry-provider-db/pom.xml +++ b/sentry-provider/sentry-provider-db/pom.xml @@ -146,17 +146,17 @@ limitations under the License. <artifactId>datanucleus-rdbms</artifactId> </dependency> <dependency> - <groupId>io.dropwizard.metrics</groupId> + <groupId>com.codahale.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${metrics.version}</version> </dependency> <dependency> - <groupId>io.dropwizard.metrics</groupId> + <groupId>com.codahale.metrics</groupId> <artifactId>metrics-servlets</artifactId> <version>${metrics.version}</version> </dependency> <dependency> - <groupId>io.dropwizard.metrics</groupId> + <groupId>com.codahale.metrics</groupId> <artifactId>metrics-jvm</artifactId> <version>${metrics.version}</version> </dependency>
