Merge branch '2.4.x' into 2.5.x

Closes gh-28340
This commit is contained in:
Andy Wilkinson 2021-10-14 14:10:33 +01:00
commit 865615e099
2 changed files with 9 additions and 0 deletions

View File

@ -599,6 +599,13 @@ bom {
]
}
}
library("Jakarta Management", "1.1.4") {
group("jakarta.management.j2ee") {
modules = [
"jakarta.management.j2ee-api"
]
}
}
library("Jakarta Persistence", "2.2.3") {
prohibit("[3.0.0-RC1,)") {
because "it uses the jakarta.* namespace"

View File

@ -8,7 +8,9 @@ dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
api("org.springframework:spring-jms")
api("org.apache.activemq:activemq-broker") {
exclude group: "org.apache.geronimo.specs", module: "geronimo-j2ee-management_1.1_spec"
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_1.1_spec"
}
api("jakarta.jms:jakarta.jms-api")
api("jakarta.management.j2ee:jakarta.management.j2ee-api")
}