summaryrefslogtreecommitdiffstats
path: root/node-admin/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-28 15:18:41 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-28 15:18:41 +0200
commit038ccba9ff0b90d6d6b78825c6e34ba116003fa5 (patch)
tree20fc060bb344afca2d5239c6491b2bee8e5e63c8 /node-admin/pom.xml
parent4514585fe9e66260809f20ef92252a29ff987d67 (diff)
Convert node-admin to junit5
Diffstat (limited to 'node-admin/pom.xml')
-rw-r--r--node-admin/pom.xml24
1 files changed, 14 insertions, 10 deletions
diff --git a/node-admin/pom.xml b/node-admin/pom.xml
index ae7e6ac2bce..8ef8e934cd8 100644
--- a/node-admin/pom.xml
+++ b/node-admin/pom.xml
@@ -87,21 +87,11 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>junit</groupId>
- <artifactId>junit</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>com.yahoo.vespa</groupId>
<artifactId>application</artifactId>
<version>${project.version}</version>
@@ -136,6 +126,20 @@
<artifactId>testutil</artifactId>
<version>${project.version}</version>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-library</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- Needed for node repo mock -->
<dependency>