spring-rabbitmq-retry
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.jaconi</groupId> <artifactId>spring-rabbitmq-retry</artifactId> <version>1.2.9</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>io.jaconi</groupId> <artifactId>spring-rabbitmq-retry</artifactId> <version>1.2.9</version> <name>Spring RabbitMQ Retry</name> <description>Retries and exponential backoff for Spring AMQP.</description> <url>https://github.com/jaconi-io/spring-rabbitmq-retry</url> <inceptionYear>2023</inceptionYear> <organization> <name>jaconi GmbH</name> <url>https://jaconi.io</url> </organization> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> <comments>MIT License</comments> </license> </licenses> <developers> <developer> <name>Julian Nodorp</name> <email>jnodorp@jaconi.io</email> <organization>jaconi GmbH</organization> <organizationUrl>https://jaconi.io</organizationUrl> </developer> <developer> <name>Gerrit Schlüter</name> <email>gschlueter@jaconi.io</email> <organization>jaconi GmbH</organization> <organizationUrl>https://jaconi.io</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/jaconi-io/spring-rabbitmq-retry.git</connection> <developerConnection>scm:git:ssh://github.com:jaconi-io/spring-rabbitmq-retry.git</developerConnection> <url>https://github.com/jaconi-io/spring-rabbitmq-retry/tree/main</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/jaconi-io/spring-rabbitmq-retry/issues</url> </issueManagement> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/jaconi-io/spring-rabbitmq-retry/actions</url> </ciManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>3.5.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-rabbit</artifactId> <version>3.2.5</version> <scope>runtime</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.5.3</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> </project>