2022-01-29 16:05:32 +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>
|
|
|
|
<artifactId>yudao-module-system</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-04-22 00:07:54 +08:00
|
|
|
<artifactId>yudao-module-system-biz</artifactId>
|
2022-01-29 16:05:32 +08:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2022-02-10 11:16:17 +08:00
|
|
|
<name>${project.artifactId}</name>
|
2022-01-29 16:05:32 +08:00
|
|
|
<description>
|
|
|
|
system 模块下,我们放通用业务,支撑上层的核心业务。
|
|
|
|
例如说:用户、部门、权限、数据字典等等
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-module-system-api</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-01-31 17:57:45 +08:00
|
|
|
<artifactId>yudao-module-infra-api</artifactId>
|
|
|
|
<version>${revision}</version>
|
2022-01-29 16:05:32 +08:00
|
|
|
</dependency>
|
|
|
|
|
2022-01-31 17:57:45 +08:00
|
|
|
<!-- 业务组件 -->
|
2022-01-29 16:05:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-data-permission</artifactId>
|
|
|
|
</dependency>
|
2022-01-31 17:57:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
2022-02-20 00:33:12 +08:00
|
|
|
<artifactId>yudao-spring-boot-starter-biz-tenant</artifactId>
|
2022-01-31 17:57:45 +08:00
|
|
|
</dependency>
|
2022-12-23 18:47:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-biz-ip</artifactId>
|
|
|
|
</dependency>
|
2022-01-29 16:05:32 +08:00
|
|
|
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-12-09 13:43:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-01-29 16:05:32 +08:00
|
|
|
<!-- 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>
|
|
|
|
|
2022-02-20 00:33:12 +08:00
|
|
|
<!-- Job 定时任务相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-job</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-01-29 16:05:32 +08:00
|
|
|
<!-- 消息队列相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-mq</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 工具类相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-excel</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-01-26 01:57:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
</dependency>
|
2023-11-26 11:39:29 +08:00
|
|
|
|
|
|
|
<!-- 三方云服务相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xingyuv</groupId>
|
|
|
|
<artifactId>spring-boot-starter-justauth</artifactId> <!-- 社交登陆(例如说,个人微信、企业微信等等) -->
|
|
|
|
</dependency>
|
|
|
|
|
2023-11-26 17:08:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
<artifactId>wx-java-mp-spring-boot-starter</artifactId> <!-- 微信登录(公众号) -->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
<artifactId>wx-java-miniapp-spring-boot-starter</artifactId> <!-- 微信登录(小程序) -->
|
|
|
|
</dependency>
|
|
|
|
|
2024-01-27 11:25:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>aliyun-java-sdk-core</artifactId> <!-- 短信(阿里云) -->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId> <!-- 短信(阿里云) -->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
|
|
<artifactId>tencentcloud-sdk-java-sms</artifactId> <!-- 短信(腾讯云) -->
|
|
|
|
</dependency>
|
2024-02-28 20:31:55 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xingyuv</groupId>
|
|
|
|
<artifactId>spring-boot-starter-captcha-plus</artifactId> <!-- 验证码,一般用于登录使用 -->
|
|
|
|
</dependency>
|
2024-09-23 14:03:35 +08:00
|
|
|
|
|
|
|
<!--JWT解析库-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
<version>4.4.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-01-29 16:05:32 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|