Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump dropwizard-metrics to 4.0.2 #943

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions driver-core/pom.xml
Expand Up @@ -49,6 +49,11 @@
<artifactId>metrics-core</artifactId>
</dependency>

<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jmx</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
Expand Up @@ -16,6 +16,7 @@
package com.datastax.driver.core;

import com.codahale.metrics.*;
import com.codahale.metrics.jmx.JmxReporter;
import com.datastax.driver.core.policies.SpeculativeExecutionPolicy;

import java.util.HashSet;
Expand Down
Expand Up @@ -145,6 +145,7 @@ public Option[] getOptions() {
mavenBundle("ch.qos.logback", "logback-classic", getVersion("logback.version")),
mavenBundle("ch.qos.logback", "logback-core", getVersion("logback.version")),
mavenBundle("io.dropwizard.metrics", "metrics-core", getVersion("metrics.version")),
mavenBundle("io.dropwizard.metrics", "metrics-jmx", getVersion("metrics.version")),
mavenBundle("org.testng", "testng", getVersion("testng.version")),
systemPackages("org.testng", "org.junit", "org.junit.runner", "org.junit.runner.manipulation",
"org.junit.runner.notification", "com.jcabi.manifests")
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Expand Up @@ -52,7 +52,7 @@
<slf4j-log4j12.version>1.7.25</slf4j-log4j12.version>
<guava.version>19.0</guava.version>
<netty.version>4.0.47.Final</netty.version>
<metrics.version>3.2.2</metrics.version>
<metrics.version>4.0.2</metrics.version>
<snappy.version>1.1.2.6</snappy.version>
<lz4.version>1.3.0</lz4.version>
<hdr.version>2.1.9</hdr.version>
Expand Down Expand Up @@ -140,6 +140,12 @@
<version>${metrics.version}</version>
</dependency>

<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jmx</artifactId>
<version>${metrics.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down