封装rabbitmq starter

This commit is contained in:
zhuyijun 2022-09-25 00:39:03 +08:00
parent 246960b64b
commit abe24f9e8a
3 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,9 @@
Manifest-Version: 1.0
Implementation-Title: zyjblogs-rabbitmq-spring-boot-starter
Implementation-Version: 1.0-SNAPSHOT
Build-Timestamp: 2022年 09月 20日 星期二 13:59:35 CST
Bundle-DocURL: https://zyjblogs.cn/
Build-OS: Ubuntu 22.04
Created-By: Apache Maven 3.8.4
Built-By: zhuyijun
Build-Jdk: 11.0.14.1

View File

@ -0,0 +1,48 @@
<?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>
<artifactId>zyjblogs-parent</artifactId>
<groupId>cn.zyjblogs</groupId>
<version>1.0-SNAPSHOT</version>
<relativePath/>
</parent>
<groupId>cn.zyjblogs.starter</groupId>
<artifactId>zyjblogs-rabbitmq-spring-boot-starter</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>cn.zyjblogs.starter</groupId>
<artifactId>zyjblogs-common-spring-boot-starter</artifactId>
<version>${zyjblogs.version}</version>
</dependency>
<!-- Spring 集成 -->
<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>cn.zyjblogs.starter</groupId>
<artifactId>zyjblogs-redis-spring-boot-starter</artifactId>
<version>${zyjblogs.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,2 @@
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
cn.zyjblogs.starter.rabbitmq.autoconfig.RabbitMqAutoConfiguration