
#### 1. 更新Spring Boot版本 将Spring Boot版本从3.3.1更新至3.3.4 在[pom.xml](file://a/pom.xml)文件中,将[spring-boot.version](file://a/pom.xml#L17)修改为`3.3.4` #### 2. 排除`alipay-sdk-java`中的日志依赖 在`ruoyi-auth`模块中,为`alipay-sdk-java`依赖添加了排除项,以去除`commons-logging` 在[pom.xml](file://a/ruoyi-auth/pom.xml)文件中,将[exclusions](file://a/ruoyi-auth/pom.xml#L40)添加到`alipay-sdk-java`依赖中 #### 3. 移除`StringUtils`的无用导入 从`MinioController`中移除未使用的`StringUtils`导入 在[MinioController.java](file://a/ruoyi-middleware/ruoyi-middleware-minio/src/main/java/com/ruoyi/middleware/minio/controller/MinioController.java)文件中,删除了[导入信息](file://a/ruoyi-middleware/ruoyi-middleware-minio/src/main/java/com/ruoyi/middleware/minio/controller/MinioController.java#L10)
105 lines
3.6 KiB
XML
105 lines
3.6 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</artifactId>
|
|
<groupId>com.ruoyi</groupId>
|
|
<version>3.8.8.3.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ruoyi-auth</artifactId>
|
|
|
|
<properties>
|
|
<justauth.version>1.16.6</justauth.version>
|
|
<alipay.version>3.7.4.ALL</alipay.version>
|
|
<dysmsapi.version>2.0.24</dysmsapi.version>
|
|
</properties>
|
|
|
|
<description>
|
|
第三方认证模块
|
|
</description>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- 第三方认证通用工具-->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-auth-common</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- justauth第三方认证框架 -->
|
|
<dependency>
|
|
<groupId>me.zhyd.oauth</groupId>
|
|
<artifactId>JustAuth</artifactId>
|
|
<version>${justauth.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 支付宝开发者sdk -->
|
|
<dependency>
|
|
<groupId>com.alipay.sdk</groupId>
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
<version>${alipay.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>commons-logging</artifactId>
|
|
<groupId>commons-logging</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- 阿里云短信认证 -->
|
|
<dependency>
|
|
<groupId>com.aliyun</groupId>
|
|
<artifactId>dysmsapi20170525</artifactId>
|
|
<version>${dysmsapi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- justauth通用认证 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-oauth-justauth</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 微信小程序和公众号认证 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-oauth-wx</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 手机号认证 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-tfa-phone</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 邮箱认证 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-tfa-email</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 第三方登录启动器 -->
|
|
<dependency>
|
|
<groupId>com.ruoyi</groupId>
|
|
<artifactId>ruoyi-auth-starter</artifactId>
|
|
<version>${ruoyi.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
<modules>
|
|
<module>ruoyi-auth-common</module>
|
|
<module>ruoyi-oauth-justauth</module>
|
|
<module>ruoyi-oauth-wx</module>
|
|
<module>ruoyi-tfa-phone</module>
|
|
<module>ruoyi-tfa-email</module>
|
|
<module>ruoyi-auth-starter</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
</project> |