| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.github.microservice</groupId>
- <artifactId>MSModule</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../../../super/MSModule</relativePath>
- </parent>
- <groupId>com.github.microservice.auth</groupId>
- <artifactId>AuthClient</artifactId>
- <name>AuthClient</name>
- <dependencies>
- <dependency>
- <groupId>com.github.microservice</groupId>
- <artifactId>PCore</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!--应用中心客户端-->
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>ApplicationClient</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.security</groupId>-->
- <!-- <artifactId>spring-security-oauth2-client</artifactId>-->
- <!-- <version>${spring-security-core.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-config</artifactId>
- </dependency>
- <!--缓存-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-cache</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- </dependency>
- <!-- 文档 -->
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>Swagger2</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </project>
|