Skip to content

Commit

Permalink
Upgrade metrics version from 3.1.2 to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaDemianenko committed Jan 7, 2018
1 parent 41cbf1b commit 2c4df99
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions enterprise/metrics/pom.xml
Expand Up @@ -138,6 +138,12 @@
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-graphite</artifactId>
<exclusions>
<exclusion>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Prometheus.io endpoint-->
Expand Down
11 changes: 9 additions & 2 deletions pom.xml
Expand Up @@ -88,6 +88,7 @@
<scala.version>2.11.12</scala.version>
<scala.binary.version>2.11</scala.binary.version>
<asm.version>6.0</asm.version>
<metrics.version>4.0.2</metrics.version>
<scala.java9.arg/>
</properties>

Expand Down Expand Up @@ -1167,12 +1168,18 @@
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>3.1.2</version>
<version>${metrics.version}</version>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-graphite</artifactId>
<version>3.1.2</version>
<version>${metrics.version}</version>
<exclusions>
<exclusion>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit 2c4df99

Please sign in to comment.