summaryrefslogtreecommitdiffstats
path: root/hosted-tenant-base/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'hosted-tenant-base/pom.xml')
-rw-r--r--hosted-tenant-base/pom.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/hosted-tenant-base/pom.xml b/hosted-tenant-base/pom.xml
index 734c096d373..a5b9c5d3f82 100644
--- a/hosted-tenant-base/pom.xml
+++ b/hosted-tenant-base/pom.xml
@@ -223,16 +223,20 @@
</configuration>
</execution>
<execution>
- <id>enforce-no-jupiter-compile-scope</id>
+ <id>enforce-just-our-jupiter</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
- <!-- Fail validation for apps with junit-jupiter-api in compile scope. -->
+ <!-- Fail validation for apps with junit-jupiter-api in compile scope, or on wrong version. -->
<excludes>
<exclude>org.junit.jupiter:junit-jupiter-api:*:jar:compile</exclude>
+ <exclude>org.junit.jupiter:junit-jupiter-api:*:jar:provided</exclude>
+ <exclude>org.junit.jupiter:junit-jupiter-api:*:jar:runtime</exclude>
+ <exclude>org.junit.jupiter:junit-jupiter-api:(,${junit.version}):jar:*</exclude>
+ <exclude>org.junit.jupiter:junit-jupiter-api:(${junit.version},):jar:*</exclude>
</excludes>
</bannedDependencies>
</rules>