Skip to content

Commit 18c85d9

Browse files
committed
Fix version ranges used to prohibit Jakarta EE 11 spec upgrades
See gh-41176
1 parent 57b3a12 commit 18c85d9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ bom {
711711
}
712712
library("Jakarta Persistence", "3.1.0") {
713713
prohibit {
714-
versionRange "[3.2.0,3.2.0]"
714+
versionRange "[3.2.0-B01,3.2.0]"
715715
because "it's part of Jakarta EE 11"
716716
}
717717
group("jakarta.persistence") {
@@ -722,7 +722,7 @@ bom {
722722
}
723723
library("Jakarta Servlet", "6.0.0") {
724724
prohibit {
725-
versionRange "[6.1.0,6.1.0]"
725+
versionRange "[6.1.0-M1,6.1.0]"
726726
because "it's part of Jakarta EE 11"
727727
}
728728
group("jakarta.servlet") {
@@ -747,7 +747,7 @@ bom {
747747
}
748748
library("Jakarta Validation", "3.0.2") {
749749
prohibit {
750-
versionRange "[3.1.0,3.1.0]"
750+
versionRange "[3.1.0-M1,3.1.0]"
751751
because "it's part of Jakarta EE 11"
752752
}
753753
group("jakarta.validation") {
@@ -758,7 +758,7 @@ bom {
758758
}
759759
library("Jakarta WebSocket", "2.1.1") {
760760
prohibit {
761-
versionRange "[2.2.0,2.2.0]"
761+
versionRange "[2.2.0-M1,2.2.0]"
762762
because "it's part of Jakarta EE 11"
763763
}
764764
group("jakarta.websocket") {

0 commit comments

Comments
 (0)