108 lines
3.4 KiB
XML
108 lines
3.4 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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.boot</groupId>
|
||
<artifactId>boot-car-order</artifactId>
|
||
<version>3.6.3</version>
|
||
</parent>
|
||
|
||
<artifactId>car-order-server</artifactId>
|
||
|
||
<properties>
|
||
<maven.compiler.source>17</maven.compiler.source>
|
||
<maven.compiler.target>17</maven.compiler.target>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.boot</groupId>
|
||
<artifactId>car-order-remote</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Nacos -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Nacos Config -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringCloud Alibaba Sentinel -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
||
</dependency>
|
||
|
||
<!-- SpringBoot Actuator -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Swagger UI -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>${swagger.fox.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Mysql Connector -->
|
||
<dependency>
|
||
<groupId>com.mysql</groupId>
|
||
<artifactId>mysql-connector-j</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common DataSource -->
|
||
<dependency>
|
||
<groupId>com.boot</groupId>
|
||
<artifactId>boot-common-datasource</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common DataScope -->
|
||
<dependency>
|
||
<groupId>com.boot</groupId>
|
||
<artifactId>boot-common-datascope</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common Log -->
|
||
<dependency>
|
||
<groupId>com.boot</groupId>
|
||
<artifactId>boot-common-log</artifactId>
|
||
</dependency>
|
||
|
||
<!-- RuoYi Common Swagger -->
|
||
<dependency>
|
||
<groupId>com.boot</groupId>
|
||
<artifactId>boot-common-swagger</artifactId>
|
||
</dependency>
|
||
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.boot</groupId>-->
|
||
<!-- <artifactId>boot-common-rabbitMq</artifactId>-->
|
||
<!-- </dependency>-->
|
||
|
||
|
||
<!-- amqp依赖,包含Rabbitmq-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-amqp</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>redis.clients</groupId>
|
||
<artifactId>jedis</artifactId>
|
||
<version>3.7.1</version>
|
||
</dependency>
|
||
|
||
|
||
</dependencies>
|
||
|
||
</project>
|