summaryrefslogtreecommitdiffstats
path: root/hosted-tenant-base
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@vespa.ai>2023-10-18 09:26:34 +0200
committerBjørn Christian Seime <bjorncs@vespa.ai>2023-10-18 09:26:36 +0200
commit83dc4342280bf1b7a891db71e048cfcfe68884c4 (patch)
tree4ca608f4e9becbeb8acf55ffa2868659caba1067 /hosted-tenant-base
parent771b853b8a0b13a476854eed4e98317d02232ebc (diff)
Add TestNG as banned dependency
TestNG breaks our junit5 based test framework for Vespa Cloud
Diffstat (limited to 'hosted-tenant-base')
-rw-r--r--hosted-tenant-base/pom.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/hosted-tenant-base/pom.xml b/hosted-tenant-base/pom.xml
index 729150bcef1..232ecd0e3e5 100644
--- a/hosted-tenant-base/pom.xml
+++ b/hosted-tenant-base/pom.xml
@@ -284,6 +284,9 @@
<exclude>org.junit.platform:junit-platform-engine:(${junit.platform.vespa.tenant.version},):jar:*</exclude>
<exclude>org.junit.platform:junit-platform-commons:(,${junit.platform.vespa.tenant.version}):jar:*</exclude>
<exclude>org.junit.platform:junit-platform-commons:(${junit.platform.vespa.tenant.version},):jar:*</exclude>
+
+ <!-- Ban testng as its presence breaks the Java based test framework for Cloud -->
+ <exclude>org.testng:testng:*:jar:test</exclude>
</excludes>
</bannedDependencies>
</rules>