39 lines
1.3 KiB
XML
39 lines
1.3 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">
|
||
<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>
|