| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?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>MSRunnable</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <relativePath>../../../super/MSRunnable</relativePath>
- </parent>
- <groupId>com.github.microservice.auth</groupId>
- <artifactId>AuthServer</artifactId>
- <name>AuthServer</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>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>33.3.1-jre</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>0.12.5</version>
- </dependency>
- <!-- 客户端 -->
- <dependency>
- <groupId>com.github.microservice.auth</groupId>
- <artifactId>AuthClient</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-web</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-config</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>RedisData</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.microservice.components</groupId>
- <artifactId>MongodbData</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-security</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-oauth2-core</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.security</groupId>-->
- <!-- <artifactId>spring-security-oauth2-authorization-server</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-starter-oauth2-authorization-server</artifactId>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.cloud</groupId>-->
- <!-- <artifactId>spring-cloud-starter-oauth2</artifactId>-->
- <!-- <version>2.2.5.RELEASE</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.springframework.security.experimental</groupId>-->
- <!-- <artifactId>spring-security-oauth2-authorization-server</artifactId>-->
- <!-- <version>${spring-security-oauth2-authorization-server.version}</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.sun.xml.bind</groupId>
- <artifactId>jaxb-impl</artifactId>
- <version>4.0.4</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-api</artifactId>
- <version>0.12.5</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-impl</artifactId>
- <version>0.12.5</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <!--构建-->
- </project>
|