Skip to content

Commit adb9226

Browse files
committed
Prohibit org.apache.geronimo.specs dependencies in our starters
Closes gh-28338
1 parent ce1a141 commit adb9226

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

buildSrc/src/main/java/org/springframework/boot/build/classpath/CheckClasspathForProhibitedDependencies.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ private boolean prohibited(ModuleVersionIdentifier id) {
8282
if (group.startsWith("org.jboss.spec")) {
8383
return true;
8484
}
85+
if (group.equals("org.apache.geronimo.specs")) {
86+
return true;
87+
}
8588
return false;
8689
}
8790

0 commit comments

Comments
 (0)