Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 7d879c6

Browse files
joschijklukas
authored andcommitted
Use metrics-core instead of dropwizard-metrics (#3)
There are no Dropwizard-specific classes being used in this project. It only depends on the Dropwizard Metrics library.
1 parent 19c769d commit 7d879c6

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>com.simple</groupId>
5454
<artifactId>kafka-dropwizard-reporter</artifactId>
55-
<version>1.0.0</version>
55+
<version>1.0-SNAPSHOT</version>
5656
</dependency>
5757
</dependencies>
5858

pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,9 @@
7777

7878
<dependencies>
7979
<dependency>
80-
<groupId>io.dropwizard</groupId>
81-
<artifactId>dropwizard-metrics</artifactId>
82-
<version>0.9.2</version>
83-
<scope>provided</scope>
80+
<groupId>io.dropwizard.metrics</groupId>
81+
<artifactId>metrics-core</artifactId>
82+
<version>3.1.2</version>
8483
</dependency>
8584
<dependency>
8685
<groupId>org.apache.kafka</groupId>
@@ -94,6 +93,12 @@
9493
<version>4.12</version>
9594
<scope>test</scope>
9695
</dependency>
96+
<dependency>
97+
<groupId>org.slf4j</groupId>
98+
<artifactId>slf4j-simple</artifactId>
99+
<version>1.7.21</version>
100+
<scope>test</scope>
101+
</dependency>
97102
</dependencies>
98103

99104
<profiles>

0 commit comments

Comments
 (0)