youlai-mall/youlai-system/system-boot/pom.xml

133 lines
3.9 KiB
XML
Raw Normal View History

2021-02-25 20:08:21 +08:00
<?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>youlai-system</artifactId>
2021-02-25 20:08:21 +08:00
<groupId>com.youlai</groupId>
<version>3.2.1</version>
2021-02-25 20:08:21 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>system-boot</artifactId>
2021-02-25 20:08:21 +08:00
<properties>
2022-03-16 15:21:53 +08:00
<service.port>8800</service.port>
<service.nodeport>32004</service.nodeport>
2021-02-25 20:08:21 +08:00
</properties>
<dependencies>
2021-04-01 18:08:29 +08:00
<!-- Spring Cloud & Alibaba -->
2021-03-05 20:24:20 +08:00
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
<!-- 注册中心 -->
2021-02-25 20:08:21 +08:00
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<exclusions>
<exclusion>
<artifactId>jsr305</artifactId>
<groupId>com.google.code.findbugs</groupId>
</exclusion>
</exclusions>
2021-02-25 20:08:21 +08:00
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>
<!-- 配置中心 -->
2021-02-25 20:08:21 +08:00
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
2021-04-12 01:01:25 +08:00
<!-- Sentinel流量控制、熔断降级 -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
2021-04-12 01:01:25 +08:00
<!-- Sentinel规则持久化至Nacos配置 -->
<dependency>
<groupId>com.alibaba.csp</groupId>
<artifactId>sentinel-datasource-nacos</artifactId>
</dependency>
2021-04-01 18:08:29 +08:00
<!-- 分布式对象存储 -->
2021-02-25 20:08:21 +08:00
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
</dependency>
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
2021-02-25 20:08:21 +08:00
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
</dependency>
2021-02-25 20:08:21 +08:00
<dependency>
2021-04-01 18:08:29 +08:00
<groupId>com.youlai</groupId>
<artifactId>system-api</artifactId>
2021-02-25 20:08:21 +08:00
</dependency>
<dependency>
2021-04-01 18:08:29 +08:00
<groupId>com.youlai</groupId>
<artifactId>common-redis</artifactId>
2021-02-25 20:08:21 +08:00
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-mybatis</artifactId>
</dependency>
2021-11-04 23:55:01 +08:00
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-rabbitmq</artifactId>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-security</artifactId>
</dependency>
2022-04-11 00:12:37 +08:00
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-apidoc</artifactId>
2022-04-11 00:12:37 +08:00
</dependency>
2024-02-28 18:29:40 +08:00
<dependency>
<groupId>com.youlai</groupId>
<artifactId>common-sms</artifactId>
</dependency>
<!-- 单元测试 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2021-02-25 20:08:21 +08:00
</dependencies>
<build>
2021-08-13 17:53:59 +08:00
<finalName>${project.artifactId}</finalName>
2021-02-25 20:08:21 +08:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>