Skip to content

Commit 3920f97

Browse files
committed
Fix bomr version range constraint for single version
This commit fixes the version range in our DSL to use brackets around a particular version we have to skip. See https://maven.apache.org/enforcer/enforcer-rules/versionRanges.html Closes gh-36976
1 parent efb87fd commit 3920f97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ bom {
5959
}
6060
library("ANTLR2", "2.7.7") {
6161
prohibit {
62-
versionRange "20030911"
62+
versionRange "[20030911]"
6363
because "it is old version that used a different versioning scheme"
6464
}
6565
group("antlr") {
@@ -1502,7 +1502,7 @@ bom {
15021502
}
15031503
library("RSocket", "1.1.3") {
15041504
prohibit {
1505-
versionRange "1.1.4"
1505+
versionRange "[1.1.4]"
15061506
because "it contains a regression (https://github.com/rsocket/rsocket-java/issues/1092)"
15071507
}
15081508
group("io.rsocket") {

0 commit comments

Comments
 (0)