70 lines
2.2 KiB
XML
70 lines
2.2 KiB
XML
|
|
<?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">
|
||
|
|
<parent>
|
||
|
|
<artifactId>ruoyi-common-mq</artifactId>
|
||
|
|
<groupId>com.ruoyi</groupId>
|
||
|
|
<version>2.3.0</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>com.ruoyi</groupId>
|
||
|
|
<artifactId>ruoyi-producer</artifactId>
|
||
|
|
|
||
|
|
<name>ruoyi-producer</name>
|
||
|
|
<!-- FIXME change it to the project's website -->
|
||
|
|
<url>http://www.example.com</url>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- Ruoyi Common Security -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.ruoyi</groupId>
|
||
|
|
<artifactId>ruoyi-common-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- SpringCloud Ailibaba Nacos -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- SpringCloud Ailibaba Sentinel -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- SpringCloud Ailibaba Nacos Config -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- SpringBoot Web -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Ruoyi rocketmq -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.rocketmq</groupId>
|
||
|
|
<artifactId>rocketmq-spring-boot-starter</artifactId>
|
||
|
|
<version>2.0.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Mysql Connector -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- test -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|