You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.1 KiB
117 lines
4.1 KiB
<?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> |
|
<artifactId>financial</artifactId> |
|
<groupId>com.daqing.financial</groupId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>dq-financial-hrms-auth</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<name>人资用户认证服务hrms-auth</name> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
<spring-cloud.version>Greenwich.SR3</spring-cloud.version> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>com.auth0</groupId> |
|
<artifactId>java-jwt</artifactId> |
|
<version>3.2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.jsonwebtoken</groupId> |
|
<artifactId>jjwt</artifactId> |
|
<version>0.7.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-security</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security.oauth</groupId> |
|
<artifactId>spring-security-oauth2</artifactId> |
|
<!-- 指明版本,解决redis存储出现的问题:java.lang.NoSuchMethodError: org.springframework.data.redis.connection.RedisConnection.set([B[B)V问题 --> |
|
<version>2.3.3.RELEASE</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-core</artifactId> |
|
<version>5.1.6.RELEASE</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-devtools</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-openfeign</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.daqing.financial</groupId> |
|
<artifactId>dq-financial-api</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.security</groupId> |
|
<artifactId>spring-security-web</artifactId> |
|
<version>5.3.4.RELEASE</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
|
|
<!-- <dependency> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
</dependency>--> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-dependencies</artifactId> |
|
<version>${spring-cloud.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<!-- <configuration >--> |
|
<!-- <classifier>exec</classifier>--> |
|
<!-- </configuration>--> |
|
</plugin> |
|
<!-- <plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
<configuration> |
|
<source>1.8</source> |
|
<target>1.8</target> |
|
</configuration> |
|
</plugin>--> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|