aboutsummaryrefslogtreecommitdiffstats
path: root/container-disc/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-28 11:34:21 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-28 14:51:34 +0200
commit30b533c56ff0286aa3831889f46ba7c19e393ec0 (patch)
treeecb0708da3359da471cfc5f7530e318885d82edc /container-disc/pom.xml
parentaf6b5979aa92587016bdd98df7c570f6e4045e62 (diff)
Convert container-disc to junit5
Diffstat (limited to 'container-disc/pom.xml')
-rw-r--r--container-disc/pom.xml24
1 files changed, 14 insertions, 10 deletions
diff --git a/container-disc/pom.xml b/container-disc/pom.xml
index 4ba208cc354..273270b208b 100644
--- a/container-disc/pom.xml
+++ b/container-disc/pom.xml
@@ -16,25 +16,29 @@
<packaging>container-plugin</packaging>
<dependencies>
<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>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>
<dependency>
<groupId>org.mockito</groupId>