summaryrefslogtreecommitdiffstats
path: root/hosted-api/pom.xml
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2019-06-21 16:06:32 +0200
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2019-06-21 16:06:32 +0200
commit7b913e0cd410920aac6ebfc5b4031a32e4a9befc (patch)
treebe3eb4b4742c6da2ad2c1cbe25179c686dd24cad /hosted-api/pom.xml
parenta0d854b6a3fab6fe44b1164c071fc994b331c3bc (diff)
Surefire 2.22 and junit5 dependency management, with POC
Diffstat (limited to 'hosted-api/pom.xml')
-rw-r--r--hosted-api/pom.xml10
1 files changed, 7 insertions, 3 deletions
diff --git a/hosted-api/pom.xml b/hosted-api/pom.xml
index f20244a8816..928a173f9d8 100644
--- a/hosted-api/pom.xml
+++ b/hosted-api/pom.xml
@@ -34,9 +34,13 @@
</dependency>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-engine</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>