aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-03-18 20:29:50 +0100
committergjoranv <gv@verizonmedia.com>2021-03-23 22:58:12 +0100
commitcb3b722ef00dc440c95c39d6a034f34a7204d59d (patch)
treeb7d89689b28b2c3b6871c9496c4de578942c2c5e /container-core/pom.xml
parent371ff8163a3f0c2912c8974e1e57b6cd39f09156 (diff)
Add necessary test deps from jdisc_http_service.
- org.bouncycastle:bcpkix-jdk15on could be skipped
Diffstat (limited to 'container-core/pom.xml')
-rw-r--r--container-core/pom.xml42
1 files changed, 36 insertions, 6 deletions
diff --git a/container-core/pom.xml b/container-core/pom.xml
index f387172b91d..12097aef787 100644
--- a/container-core/pom.xml
+++ b/container-core/pom.xml
@@ -234,12 +234,6 @@
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
- <artifactId>jdisc_http_service</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.yahoo.vespa</groupId>
<artifactId>jdisc_jetty</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
@@ -284,15 +278,51 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.cthul</groupId>
+ <artifactId>cthul-matchers</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-client</artifactId>
+ <version>${jetty.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-library</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-test</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<plugins>