2021-01-13 14:41:15 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2021-01-21 14:19:13 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.fujieid</groupId>
|
|
|
|
<artifactId>jap</artifactId>
|
2021-04-28 17:45:09 +08:00
|
|
|
<version>${revision}</version>
|
2021-01-21 14:19:13 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-01-13 14:41:15 +08:00
|
|
|
|
2021-01-21 14:19:13 +08:00
|
|
|
<artifactId>jap-social</artifactId>
|
|
|
|
<name>jap-social</name>
|
|
|
|
<description>
|
|
|
|
Integrate justauth to realize the authorized login of the third-party platform,
|
|
|
|
and support the automatic creation of login account
|
|
|
|
</description>
|
2021-01-13 14:41:15 +08:00
|
|
|
|
2021-01-21 14:19:13 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fujieid</groupId>
|
|
|
|
<artifactId>jap-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.zhyd.oauth</groupId>
|
|
|
|
<artifactId>JustAuth</artifactId>
|
|
|
|
</dependency>
|
2021-04-28 17:45:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-log</artifactId>
|
|
|
|
</dependency>
|
2021-01-21 14:19:13 +08:00
|
|
|
</dependencies>
|
2021-01-13 14:41:15 +08:00
|
|
|
</project>
|