aboutsummaryrefslogtreecommitdiffstats
path: root/config-proxy/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-29 14:50:00 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-29 14:50:00 +0200
commit9e02699ef6451d6e5f8a329fdc0001a1624d0787 (patch)
tree7fdf640fcdf7cf6a17ada413d966d3efb630b4b9 /config-proxy/pom.xml
parentd2d48d2518be19a15d214c6c2fb72fa0cec9ac52 (diff)
Convert config-proxy to junit5
Diffstat (limited to 'config-proxy/pom.xml')
-rw-r--r--config-proxy/pom.xml21
1 files changed, 13 insertions, 8 deletions
diff --git a/config-proxy/pom.xml b/config-proxy/pom.xml
index b28714925ee..476f5f99b86 100644
--- a/config-proxy/pom.xml
+++ b/config-proxy/pom.xml
@@ -14,11 +14,6 @@
<version>8-SNAPSHOT</version>
<dependencies>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>config-lib</artifactId>
<version>${project.version}</version>
@@ -59,9 +54,19 @@
<scope>compile</scope>
</dependency>
<dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <scope>compile</scope>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-api</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-engine</artifactId>
+ <scope>test</scope>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>