aboutsummaryrefslogtreecommitdiffstats
path: root/config-lib/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-29 14:41:04 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-29 14:41:04 +0200
commitd2d48d2518be19a15d214c6c2fb72fa0cec9ac52 (patch)
tree5c891dccb2676076d389f1e077ded04bf840421a /config-lib/pom.xml
parent3ba4caa0d60627e9b4d1a593445860f138f72fee (diff)
Convert config-lib to junit5
Diffstat (limited to 'config-lib/pom.xml')
-rw-r--r--config-lib/pom.xml15
1 files changed, 10 insertions, 5 deletions
diff --git a/config-lib/pom.xml b/config-lib/pom.xml
index ea72afb568d..66603deeb38 100644
--- a/config-lib/pom.xml
+++ b/config-lib/pom.xml
@@ -17,11 +17,6 @@
<name>${project.artifactId}</name>
<dependencies>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>annotations</artifactId>
<version>${project.version}</version>
@@ -33,6 +28,16 @@
<version>${project.version}</version>
<scope>provided</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>
</dependencies>
<build>
<plugins>