summaryrefslogtreecommitdiffstats
path: root/hosted-tenant-base
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-08-04 12:42:42 +0200
committerjonmv <venstad@gmail.com>2022-08-04 12:42:42 +0200
commitbf693712ffa82360a9fbede031a73ccba0188491 (patch)
tree0cfecd24b064f9bd43e321c603e8b8247459cc8e /hosted-tenant-base
parent8dfa210ae195fba3969b45705c2b7402bd0f1809 (diff)
Avoid embedding JUnit engines in the test bundle
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 4b09064548f..6589e5bf1a3 100644
--- a/hosted-tenant-base/pom.xml
+++ b/hosted-tenant-base/pom.xml
@@ -262,6 +262,9 @@
<!-- note: ordering affects how overrides are evaluated; put the most specific overrides first! -->
<testBundleScopeOverrides>
${extraTestBundleScopeOverrides},
+ org.junit.jupiter:junit-jupiter-engine:test, <!-- avoid embedding engine libraries, which are only used by the runner -->
+ org.junit.jupiter:junit-platform-engine:test, <!-- avoid embedding engine libraries, which are only used by the runner -->
+ org.junit.vintage:junit-vintage-engine:test, <!-- avoid embedding vintage engine, which isn't even supported -->
org.junit.jupiter:junit-jupiter-api:provided, <!-- ensure the api bundle provided by the tester container is used -->
com.yahoo.vespa:application:test, <!-- its transitive dependencies should be provided by the regular container -->
com.yahoo.vespa:container-test:test, <!-- its transitive dependencies should be provided by the regular container -->