summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/pom.xml4
-rw-r--r--container-dev/pom.xml6
-rw-r--r--pom.xml5
-rw-r--r--simplemetrics/pom.xml1
4 files changed, 15 insertions, 1 deletions
diff --git a/application/pom.xml b/application/pom.xml
index c5e8136628d..b03c1aa8eed 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -92,6 +92,10 @@
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.hdrhistogram</groupId>
+ <artifactId>HdrHistogram</artifactId>
+ </dependency>
</dependencies>
<build>
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index 7eef70f59e0..c819a478a9b 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -42,6 +42,12 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>simplemetrics</artifactId>
<version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.hdrhistogram</groupId>
+ <artifactId>HdrHistogram</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
diff --git a/pom.xml b/pom.xml
index a5101861f58..fc62bd5350f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -738,6 +738,11 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.hdrhistogram</groupId>
+ <artifactId>HdrHistogram</artifactId>
+ <version>2.1.8</version>
+ </dependency>
+ <dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
diff --git a/simplemetrics/pom.xml b/simplemetrics/pom.xml
index 1e06726e18d..d027fda82ce 100644
--- a/simplemetrics/pom.xml
+++ b/simplemetrics/pom.xml
@@ -20,7 +20,6 @@
<dependency>
<groupId>org.hdrhistogram</groupId>
<artifactId>HdrHistogram</artifactId>
- <version>2.1.8</version>
<scope>compile</scope>
</dependency>
<dependency>