aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon.hallingstad@gmail.com>2022-08-04 14:01:01 +0200
committerGitHub <noreply@github.com>2022-08-04 14:01:01 +0200
commit313effbf58ea4514213cdb15ebc315c2355c8d7c (patch)
tree452f5839ee849eecb9050b7686f8ade44702301b
parentbeebd14ddb331682c45c46b935311c92169d1046 (diff)
parentbf693712ffa82360a9fbede031a73ccba0188491 (diff)
Merge pull request #23578 from vespa-engine/jonmv/embed-no-engines
Avoid embedding JUnit engines in the test bundle
-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 -->