aboutsummaryrefslogtreecommitdiffstats
path: root/predicate-search-core/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-27 16:46:07 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-28 14:51:33 +0200
commit76d2dd7e68ee4dc390ad9acf253e06d1d8d135c0 (patch)
tree8524a0fe140e3fdaea098a3df83af8ac0ef948d4 /predicate-search-core/pom.xml
parenta407f4643fb1ad34499d1662eab166a83d75abe8 (diff)
Convert predicate-search-core to junit5
Diffstat (limited to 'predicate-search-core/pom.xml')
-rw-r--r--predicate-search-core/pom.xml21
1 files changed, 16 insertions, 5 deletions
diff --git a/predicate-search-core/pom.xml b/predicate-search-core/pom.xml
index 4951b3d40f1..0862d76c5a1 100644
--- a/predicate-search-core/pom.xml
+++ b/predicate-search-core/pom.xml
@@ -15,13 +15,14 @@
<name>${project.artifactId}</name>
<dependencies>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>com.yahoo.vespa</groupId>
@@ -35,6 +36,16 @@
<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>
+ <dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<scope>provided</scope>