1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?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>
- <groupId>com.tofly</groupId>
- <artifactId>tofly-njsw</artifactId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>njsw-auth</artifactId>
- <packaging>jar</packaging>
- <version>1.0.0</version>
- <dependencies>
- <!--<dependency>-->
- <!--<groupId>com.tofly</groupId>-->
- <!--<artifactId>common-core</artifactId>-->
- <!--<version>1.0.0</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-oauth</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-redis</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-entity</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-log</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>com.tofly</groupId>-->
- <!--<artifactId>common-entity</artifactId>-->
- <!--<version>1.0.0</version>-->
- <!--</dependency>-->
- <!--<!–undertow容器–>-->
- <!--<dependency>-->
- <!--<groupId>org.springframework.boot</groupId>-->
- <!--<artifactId>spring-boot-starter-undertow</artifactId>-->
- <!--</dependency>-->
- <!--<!–spring security 、oauth、jwt依赖–>-->
- <!--<dependency>-->
- <!--<groupId>org.springframework.cloud</groupId>-->
- <!--<artifactId>spring-cloud-starter-security</artifactId>-->
- <!--<exclusions>-->
- <!--<!–旧版本 redis操作有问题–>-->
- <!--<exclusion>-->
- <!--<artifactId>spring-security-oauth2</artifactId>-->
- <!--<groupId>org.springframework.security.oauth</groupId>-->
- <!--</exclusion>-->
- <!--</exclusions>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.springframework.security.oauth</groupId>-->
- <!--<artifactId>spring-security-oauth2</artifactId>-->
- <!--</dependency>-->
- <!--JDBC相关-->
- <!--<dependency>-->
- <!--<groupId>org.springframework.boot</groupId>-->
- <!--<artifactId>spring-boot-starter-jdbc</artifactId>-->
- <!--</dependency>-->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|