aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-01-23 12:38:55 +0100
committergjoranv <gv@verizonmedia.com>2020-01-28 20:11:10 +0100
commitb0e37961e675e13b292136cc342c42bad020ceff (patch)
tree973f495b7d23c6a00f91448c59849222ca09ba67 /container-core/pom.xml
parent636ae014afd9ad1826401474a87f8f1ade21cc46 (diff)
Add MetricsV2Handler to application containers.
Diffstat (limited to 'container-core/pom.xml')
-rw-r--r--container-core/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/container-core/pom.xml b/container-core/pom.xml
index f3861c92129..e51d99c3b78 100644
--- a/container-core/pom.xml
+++ b/container-core/pom.xml
@@ -16,6 +16,16 @@
<packaging>container-plugin</packaging>
<dependencies>
<dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>http-utils</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ </dependency>
+
+ <dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>provided</scope>
@@ -227,6 +237,11 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>com.github.tomakehurst</groupId>
+ <artifactId>wiremock-standalone</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>