OOZIE-2864 Maven artifacts for package com.codahale.metrics have inconsistent groupId (andras.piros via pbacsko)
Project: http://git-wip-us.apache.org/repos/asf/oozie/repo Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/0e1a0004 Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/0e1a0004 Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/0e1a0004 Branch: refs/heads/oya Commit: 0e1a0004445c37849570f14a20a1e7f55a3a3860 Parents: cf3b400 Author: Peter Bacsko <[email protected]> Authored: Thu Apr 13 13:33:00 2017 +0200 Committer: Peter Bacsko <[email protected]> Committed: Thu Apr 13 13:33:00 2017 +0200 ---------------------------------------------------------------------- core/pom.xml | 6 +++--- pom.xml | 14 ++++---------- release-log.txt | 1 + 3 files changed, 8 insertions(+), 13 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/oozie/blob/0e1a0004/core/pom.xml ---------------------------------------------------------------------- diff --git a/core/pom.xml b/core/pom.xml index a54b284..14aa034 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -413,19 +413,19 @@ </dependency> <dependency> - <groupId>com.codahale.metrics</groupId> + <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <scope>compile</scope> </dependency> <dependency> - <groupId>com.codahale.metrics</groupId> + <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-jvm</artifactId> <scope>compile</scope> </dependency> <dependency> - <groupId>com.codahale.metrics</groupId> + <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-json</artifactId> <scope>compile</scope> </dependency> http://git-wip-us.apache.org/repos/asf/oozie/blob/0e1a0004/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 6949151..5c6edf1 100644 --- a/pom.xml +++ b/pom.xml @@ -1463,21 +1463,15 @@ </dependency> <dependency> - <groupId>com.codahale.metrics</groupId> - <artifactId>metrics-core</artifactId> - <version>3.0.2</version> - </dependency> - - <dependency> - <groupId>com.codahale.metrics</groupId> + <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-jvm</artifactId> - <version>3.0.2</version> + <version>${dropwizard.metrics.version}</version> </dependency> <dependency> - <groupId>com.codahale.metrics</groupId> + <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-json</artifactId> - <version>3.0.2</version> + <version>${dropwizard.metrics.version}</version> </dependency> <!-- For drawing runtime DAG --> http://git-wip-us.apache.org/repos/asf/oozie/blob/0e1a0004/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index 6fb121e..69c82ff 100644 --- a/release-log.txt +++ b/release-log.txt @@ -1,5 +1,6 @@ -- Oozie 4.4.0 release (trunk - unreleased) +OOZIE-2864 Maven artifacts for package com.codahale.metrics have inconsistent groupId (andras.piros via pbacsko) OOZIE-2862 Coord change command doesn't change job to running if job was killed without creating any actions (puru) OOZIE-2815 Oozie not always display job log (puru) OOZIE-2860 Improve Jetty logging (andras.piros via pbacsko)
