2024-01-16 14:23:43 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2024-05-03 14:08:07 +00:00
|
|
|
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">
|
2024-01-16 14:23:43 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-06-30 20:24:05 +00:00
|
|
|
<version>3.8.8.3.1</version>
|
2024-01-16 14:23:43 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2024-06-09 19:42:47 +00:00
|
|
|
<artifactId>ruoyi-auth</artifactId>
|
2024-01-16 14:23:43 +00:00
|
|
|
|
|
|
|
<properties>
|
2024-05-03 14:08:07 +00:00
|
|
|
<justauth.version>1.16.6</justauth.version>
|
|
|
|
<alipay.version>3.7.4.ALL</alipay.version>
|
2024-05-29 06:52:45 +00:00
|
|
|
<dysmsapi.version>2.0.24</dysmsapi.version>
|
2024-01-16 14:23:43 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
第三方认证模块
|
|
|
|
</description>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 第三方认证通用工具-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-06-09 19:42:47 +00:00
|
|
|
<artifactId>ruoyi-auth-common</artifactId>
|
2024-01-16 14:23:43 +00:00
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2024-05-29 06:52:45 +00:00
|
|
|
<!-- justauth第三方认证框架 -->
|
2024-01-16 14:23:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.zhyd.oauth</groupId>
|
|
|
|
<artifactId>JustAuth</artifactId>
|
2024-05-03 14:08:07 +00:00
|
|
|
<version>${justauth.version}</version>
|
2024-01-16 14:23:43 +00:00
|
|
|
</dependency>
|
2024-05-29 06:52:45 +00:00
|
|
|
|
|
|
|
<!-- 支付宝开发者sdk -->
|
2024-01-16 14:23:43 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
2024-05-03 14:08:07 +00:00
|
|
|
<version>${alipay.version}</version>
|
2024-01-16 14:23:43 +00:00
|
|
|
</dependency>
|
|
|
|
|
2024-05-29 06:52:45 +00:00
|
|
|
<!-- 阿里云短信认证 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>dysmsapi20170525</artifactId>
|
|
|
|
<version>${dysmsapi.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2024-01-16 14:23:43 +00:00
|
|
|
<!-- 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>
|
2024-02-14 08:04:30 +00:00
|
|
|
|
|
|
|
<!-- 手机号认证 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-06-09 19:42:47 +00:00
|
|
|
<artifactId>ruoyi-tfa-phone</artifactId>
|
2024-02-14 08:04:30 +00:00
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 邮箱认证 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-06-09 19:42:47 +00:00
|
|
|
<artifactId>ruoyi-tfa-email</artifactId>
|
2024-02-14 08:04:30 +00:00
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
</dependency>
|
2024-02-15 15:21:27 +00:00
|
|
|
|
|
|
|
<!-- 第三方登录启动器 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2024-06-09 19:42:47 +00:00
|
|
|
<artifactId>ruoyi-auth-starter</artifactId>
|
2024-02-15 15:21:27 +00:00
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
</dependency>
|
2024-01-16 14:23:43 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<modules>
|
2024-06-09 19:42:47 +00:00
|
|
|
<module>ruoyi-auth-common</module>
|
2024-01-16 14:23:43 +00:00
|
|
|
<module>ruoyi-oauth-justauth</module>
|
|
|
|
<module>ruoyi-oauth-wx</module>
|
2024-06-09 19:42:47 +00:00
|
|
|
<module>ruoyi-tfa-phone</module>
|
|
|
|
<module>ruoyi-tfa-email</module>
|
|
|
|
<module>ruoyi-auth-starter</module>
|
2024-01-16 14:23:43 +00:00
|
|
|
</modules>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
</project>
|