2021-10-10 01:34:31 +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>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2021-10-28 00:01:21 +08:00
|
|
|
<artifactId>yudao</artifactId>
|
|
|
|
<version>${revision}</version>
|
2021-10-10 01:34:31 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>yudao-core-service</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2021-10-15 21:16:10 +08:00
|
|
|
<name>yudao-core-service</name>
|
2021-10-10 01:34:31 +08:00
|
|
|
<description>
|
|
|
|
公共服务,通过 jar 包的方式,被 yudao-admin-server、yudao-user-service 使用。例如说:
|
|
|
|
1. 日志相关:访问日志、登录日志、异常日志等等
|
|
|
|
2. 认证相关:在线 Session
|
|
|
|
3. 短信相关:短信模板、短信日志
|
|
|
|
等等
|
|
|
|
</description>
|
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
|
|
<dependencies>
|
2021-10-10 02:38:38 +08:00
|
|
|
<!-- 业务组件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-dict</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-sms</artifactId>
|
|
|
|
</dependency>
|
2021-10-18 09:41:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-pay</artifactId>
|
|
|
|
</dependency>
|
2021-10-10 02:38:38 +08:00
|
|
|
|
2021-10-10 01:34:31 +08:00
|
|
|
<!-- Web 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- spring boot 配置所需依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- DB 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-10 18:49:39 +08:00
|
|
|
<!-- Config 配置中心相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-config</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-12 08:18:44 +08:00
|
|
|
<!-- 消息队列相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-mq</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-27 10:06:49 +08:00
|
|
|
<!-- 服务保障相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-protection</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-10 01:34:31 +08:00
|
|
|
<!-- Test 测试相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-10-10 02:38:38 +08:00
|
|
|
|
|
|
|
<!-- 工具类相关 -->
|
2021-12-04 21:09:49 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-tenant</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-10 02:38:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
2021-10-26 21:35:06 +08:00
|
|
|
|
2021-10-28 08:46:51 +08:00
|
|
|
<!-- 三方云服务相关 -->
|
2021-10-26 21:35:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.xkcoding.justauth</groupId>
|
|
|
|
<artifactId>justauth-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2021-10-28 08:46:51 +08:00
|
|
|
|
2021-10-10 01:34:31 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|