Files
youlai-boot/youlai-auth/pom.xml
2026-04-25 16:17:08 +08:00

39 lines
1.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.youlai</groupId>
<artifactId>youlai-boot</artifactId>
<version>4.3.0</version>
</parent>
<artifactId>youlai-auth</artifactId>
<description>认证授权模块 - 登录、登出、令牌管理、第三方登录</description>
<dependencies>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>youlai-common</artifactId>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>youlai-framework</artifactId>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>youlai-system</artifactId>
</dependency>
<!-- 微信小程序登录framework 中的 optional 依赖不传递) -->
<dependency>
<groupId>com.github.binarywang</groupId>
<artifactId>weixin-java-miniapp</artifactId>
<version>${weixin-java-miniapp.version}</version>
</dependency>
</dependencies>
</project>