Migrate Spring RabbitMQ support to spring-boot-rabbitmq

See gh-49620

Co-authored-by: Eddú Meléndez <eddu.melendez@gmail.com>
This commit is contained in:
Stéphane Nicoll
2026-03-19 08:04:14 +01:00
co-authored by Eddú Meléndez
parent fda2599bc2
commit 72b8a6ca05
102 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -94,7 +94,6 @@ dependencies {
implementation(project(path: ":loader:spring-boot-loader-tools"))
implementation(project(path: ":module:spring-boot-actuator"))
implementation(project(path: ":module:spring-boot-actuator-autoconfigure"))
implementation(project(path: ":module:spring-boot-amqp"))
implementation(project(path: ":module:spring-boot-cache"))
implementation(project(path: ":module:spring-boot-cache-test"))
implementation(project(path: ":module:spring-boot-data-cassandra"))
@@ -126,6 +125,7 @@ dependencies {
implementation(project(path: ":module:spring-boot-micrometer-metrics"))
implementation(project(path: ":module:spring-boot-persistence"))
implementation(project(path: ":module:spring-boot-r2dbc"))
implementation(project(path: ":module:spring-boot-rabbitmq"))
implementation(project(path: ":module:spring-boot-restdocs"))
implementation(project(path: ":module:spring-boot-reactor-netty"))
implementation(project(path: ":module:spring-boot-restclient"))
@@ -28,9 +28,6 @@ dependencies {
api(project(":module:spring-boot-activemq")) {
transitive = false
}
api(project(":module:spring-boot-amqp")) {
transitive = false
}
api(project(":module:spring-boot-artemis")) {
transitive = false
}
@@ -208,6 +205,9 @@ dependencies {
api(project(":module:spring-boot-r2dbc")) {
transitive = false
}
api(project(":module:spring-boot-rabbitmq")) {
transitive = false
}
api(project(":module:spring-boot-reactor")) {
transitive = false
}
@@ -2049,7 +2049,6 @@ bom {
"spring-boot-activemq",
"spring-boot-actuator",
"spring-boot-actuator-autoconfigure",
"spring-boot-amqp",
"spring-boot-artemis",
"spring-boot-autoconfigure",
"spring-boot-autoconfigure-classic",
@@ -2141,6 +2140,7 @@ bom {
"spring-boot-pulsar",
"spring-boot-quartz",
"spring-boot-r2dbc",
"spring-boot-rabbitmq",
"spring-boot-reactor",
"spring-boot-reactor-netty",
"spring-boot-restclient",
@@ -2166,8 +2166,6 @@ bom {
"spring-boot-starter-activemq-test",
"spring-boot-starter-actuator",
"spring-boot-starter-actuator-test",
"spring-boot-starter-amqp",
"spring-boot-starter-amqp-test",
"spring-boot-starter-artemis",
"spring-boot-starter-artemis-test",
"spring-boot-starter-aspectj",
@@ -2280,6 +2278,8 @@ bom {
"spring-boot-starter-quartz-test",
"spring-boot-starter-r2dbc",
"spring-boot-starter-r2dbc-test",
"spring-boot-starter-rabbitmqmq",
"spring-boot-starter-rabbitmqmq-test",
"spring-boot-starter-reactor-netty",
"spring-boot-starter-restclient",
"spring-boot-starter-restclient-test",
+4 -4
View File
@@ -80,7 +80,6 @@ include "core:spring-boot-testcontainers"
include "module:spring-boot-activemq"
include "module:spring-boot-actuator"
include "module:spring-boot-actuator-autoconfigure"
include "module:spring-boot-amqp"
include "module:spring-boot-artemis"
include "module:spring-boot-autoconfigure-classic"
include "module:spring-boot-autoconfigure-classic-modules"
@@ -164,6 +163,7 @@ include "module:spring-boot-persistence"
include "module:spring-boot-pulsar"
include "module:spring-boot-quartz"
include "module:spring-boot-r2dbc"
include "module:spring-boot-rabbitmq"
include "module:spring-boot-reactor"
include "module:spring-boot-reactor-netty"
include "module:spring-boot-restclient"
@@ -208,8 +208,6 @@ include "starter:spring-boot-starter-activemq"
include "starter:spring-boot-starter-activemq-test"
include "starter:spring-boot-starter-actuator"
include "starter:spring-boot-starter-actuator-test"
include "starter:spring-boot-starter-amqp"
include "starter:spring-boot-starter-amqp-test"
include "starter:spring-boot-starter-artemis"
include "starter:spring-boot-starter-artemis-test"
include "starter:spring-boot-starter-aspectj"
@@ -325,6 +323,8 @@ include "starter:spring-boot-starter-quartz"
include "starter:spring-boot-starter-quartz-test"
include "starter:spring-boot-starter-r2dbc"
include "starter:spring-boot-starter-r2dbc-test"
include "starter:spring-boot-starter-rabbitmq"
include "starter:spring-boot-starter-rabbitmq-test"
include "starter:spring-boot-starter-reactor-netty"
include "starter:spring-boot-starter-restclient"
include "starter:spring-boot-starter-restclient-test"
@@ -393,7 +393,6 @@ include ":smoke-test:spring-boot-smoke-test-actuator-extension"
include ":smoke-test:spring-boot-smoke-test-actuator-log4j2"
include ":smoke-test:spring-boot-smoke-test-actuator-noweb"
include ":smoke-test:spring-boot-smoke-test-actuator-ui"
include ":smoke-test:spring-boot-smoke-test-amqp"
include ":smoke-test:spring-boot-smoke-test-ant"
include ":smoke-test:spring-boot-smoke-test-artemis"
include ":smoke-test:spring-boot-smoke-test-aspectj"
@@ -441,6 +440,7 @@ include ":smoke-test:spring-boot-smoke-test-prometheus"
include ":smoke-test:spring-boot-smoke-test-property-validation"
include ":smoke-test:spring-boot-smoke-test-pulsar"
include ":smoke-test:spring-boot-smoke-test-quartz"
include ":smoke-test:spring-boot-smoke-test-rabbitmq"
include ":smoke-test:spring-boot-smoke-test-reactive-oauth2-client"
include ":smoke-test:spring-boot-smoke-test-reactive-oauth2-resource-server"
include ":smoke-test:spring-boot-smoke-test-restclient"
@@ -22,10 +22,10 @@ plugins {
description = "Spring Boot AMQP smoke test"
dependencies {
implementation(project(":starter:spring-boot-starter-amqp"))
implementation(project(":starter:spring-boot-starter-rabbitmq"))
dockerTestImplementation(project(":core:spring-boot-testcontainers"))
dockerTestImplementation(project(":starter:spring-boot-starter-amqp-test"))
dockerTestImplementation(project(":starter:spring-boot-starter-rabbitmq-test"))
dockerTestImplementation(project(":test-support:spring-boot-docker-test-support"))
dockerTestImplementation("org.awaitility:awaitility")
dockerTestImplementation("org.testcontainers:testcontainers-junit-jupiter")

Some files were not shown because too many files have changed in this diff Show More