Browse Source

Harmonize support to refer to RabbitMQ

This commit adapts description to refer to RabbitMQ rather than AMQP.

See gh-49620

Co-authored-by: Eddú Meléndez <eddu.melendez@gmail.com>
pull/49658/head
Stéphane Nicoll 3 days ago
parent
commit
b820d9feac
  1. 2
      documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/amqp.adoc
  2. 2
      module/spring-boot-rabbitmq/build.gradle
  3. 2
      smoke-test/spring-boot-smoke-test-rabbitmq/build.gradle
  4. 2
      starter/spring-boot-starter-rabbitmq-test/build.gradle
  5. 2
      starter/spring-boot-starter-rabbitmq/build.gradle

2
documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/amqp.adoc

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
The Advanced Message Queuing Protocol (AMQP) is a platform-neutral, wire-level protocol for message-oriented middleware.
The Spring AMQP project applies core Spring concepts to the development of AMQP-based messaging solutions.
Spring Boot offers several conveniences for working with AMQP through RabbitMQ, including the `spring-boot-starter-amqp` starter.
Spring Boot offers several conveniences for working with AMQP through RabbitMQ, including the `spring-boot-starter-rabbitmq` starter.

2
module/spring-boot-rabbitmq/build.gradle

@ -23,7 +23,7 @@ plugins { @@ -23,7 +23,7 @@ plugins {
id "org.springframework.boot.optional-dependencies"
}
description = "Spring Boot AMQP"
description = "Spring Boot RabbitMQ"
dependencies {
api(project(":core:spring-boot"))

2
smoke-test/spring-boot-smoke-test-rabbitmq/build.gradle

@ -19,7 +19,7 @@ plugins { @@ -19,7 +19,7 @@ plugins {
id "org.springframework.boot.docker-test"
}
description = "Spring Boot AMQP smoke test"
description = "Spring Boot RabbitMQ smoke test"
dependencies {
implementation(project(":starter:spring-boot-starter-rabbitmq"))

2
starter/spring-boot-starter-rabbitmq-test/build.gradle

@ -18,7 +18,7 @@ plugins { @@ -18,7 +18,7 @@ plugins {
id "org.springframework.boot.starter"
}
description = "Starter for testing Spring AMQP and Rabbit MQ"
description = "Starter for testing RabbitMQ messaging and streaming broker"
dependencies {
api(project(":starter:spring-boot-starter-rabbitmq"))

2
starter/spring-boot-starter-rabbitmq/build.gradle

@ -18,7 +18,7 @@ plugins { @@ -18,7 +18,7 @@ plugins {
id "org.springframework.boot.starter"
}
description = "Starter for using Spring AMQP and Rabbit MQ"
description = "Starter for using RabbitMQ messaging and streaming broker"
dependencies {
api(project(":starter:spring-boot-starter"))

Loading…
Cancel
Save