spring-rabbit
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-rabbit</artifactId> <version>3.2.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework.amqp</groupId> <artifactId>spring-rabbit</artifactId> <version>3.2.1</version> <name>Spring RabbitMQ Support</name> <description>Spring RabbitMQ Support</description> <url>https://github.com/spring-projects/spring-amqp</url> <organization> <name>Spring IO</name> <url>https://spring.io/projects/spring-amqp</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>artembilan</id> <name>Artem Bilan</name> <email>artem.bilan@broadcom.com</email> <roles> <role>project lead</role> </roles> </developer> <developer> <id>garyrussell</id> <name>Gary Russell</name> <email>github@gprussell.net</email> <roles> <role>project lead emeritus</role> </roles> </developer> <developer> <id>sobychacko</id> <name>Soby Chacko</name> <email>soby.chacko@broadcom.com</email> <roles> <role>contributor</role> </roles> </developer> <developer> <id>dsyer</id> <name>Dave Syer</name> <email>david.syer@broadcom.com</email> <roles> <role>project founder</role> </roles> </developer> <developer> <id>markfisher</id> <name>Mark Fisher</name> <email>mark.fisher@broadcom.com</email> <roles> <role>project founder</role> </roles> </developer> <developer> <id>markpollack</id> <name>Mark Pollack</name> <email>mark.pollack@broadcom.com</email> <roles> <role>project founder</role> </roles> </developer> </developers> <scm> <connection>git://github.com/spring-projects/spring-amqp.git</connection> <developerConnection>git@github.com:spring-projects/spring-amqp.git</developerConnection> <url>https://github.com/spring-projects/spring-amqp</url> </scm> <issueManagement> <system>GitHub</system> <url>https://jira.spring.io/browse/AMQP</url> </issueManagement> <dependencies> <dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-amqp</artifactId> <version>3.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.rabbitmq</groupId> <artifactId>amqp-client</artifactId> <version>5.22.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-messaging</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>6.2.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-observation</artifactId> <version>1.14.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>6.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webflux</artifactId> <version>6.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> <version>5.4.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.7.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.projectreactor.netty</groupId> <artifactId>reactor-netty-http</artifactId> <version>1.2.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.12</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.24.3</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-core</artifactId> <version>1.14.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-tracing</artifactId> <version>1.4.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>3.4.1</version> <scope>compile</scope> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.9.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> <version>2.12.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-reactor</artifactId> <version>1.8.1</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>