2021-06-01 10:50:29 +08:00
|
|
|
<?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>
|
2021-07-15 16:24:15 +08:00
|
|
|
<artifactId>ballcat-auth</artifactId>
|
2021-06-01 10:50:29 +08:00
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2021-07-15 16:24:15 +08:00
|
|
|
<artifactId>ballcat-auth-controller</artifactId>
|
2021-06-01 10:50:29 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
|
|
|
|
<artifactId>ballcat-common-util</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
2021-07-06 19:14:49 +08:00
|
|
|
<artifactId>ballcat-common-security</artifactId>
|
2021-06-01 10:50:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
2021-07-06 19:14:49 +08:00
|
|
|
<artifactId>ballcat-common-model</artifactId>
|
2021-06-01 10:50:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.hccake</groupId>
|
2021-07-15 16:24:15 +08:00
|
|
|
<artifactId>ballcat-auth-biz</artifactId>
|
2021-06-01 10:50:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security.oauth</groupId>
|
|
|
|
|
<artifactId>spring-security-oauth2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
</dependency>
|
2021-07-06 18:55:40 +08:00
|
|
|
</dependencies>
|
2021-06-01 10:50:29 +08:00
|
|
|
|
|
|
|
|
</project>
|