rabbitmq-spring-boot-autoconfigure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.persiliao</groupId>
<artifactId>rabbitmq-spring-boot-autoconfigure</artifactId>
<version>3.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.persiliao</groupId>
<artifactId>rabbitmq-spring-boot-starter-parent</artifactId>
<version>3.0.0</version>
</parent>
<artifactId>rabbitmq-spring-boot-autoconfigure</artifactId>
<name>RabbitMQ Spring Boot AutoConfigure</name>
<description>Auto-configuration for RabbitMQ in Spring Boot</description>
<url>https://github.com/persiliao/rabbitmq-spring-boot-starter</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>persiliao</id>
<name>Persi.Liao</name>
<email>xiangchu.liao@gmail.com</email>
<organization>persiliao</organization>
<organizationUrl>https://github.com/persiliao</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/persiliao/rabbitmq-spring-boot-starter.git</connection>
<developerConnection>scm:git:https://github.com/persiliao/rabbitmq-spring-boot-starter.git</developerConnection>
<url>https://github.com/persiliao/rabbitmq-spring-boot-starter</url>
</scm>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>