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.
87 lines
2.7 KiB
87 lines
2.7 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>ccic-gateway</artifactId> |
|
<version>1.0</version> |
|
|
|
<parent> |
|
<groupId>com.ccic.safeliab</groupId> |
|
<artifactId>cloud-dependencies</artifactId> |
|
<version>1.0</version> |
|
<relativePath/> <!-- lookup parent from repository --> |
|
</parent> |
|
|
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.yaml</groupId> |
|
<artifactId>snakeyaml</artifactId> |
|
<version>2.3-ccic</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-gateway</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
|
</dependency> |
|
|
|
<!-- jwt --> |
|
<dependency> |
|
<groupId>io.jsonwebtoken</groupId> |
|
<artifactId>jjwt-api</artifactId> |
|
<version>${jwt.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.jsonwebtoken</groupId> |
|
<artifactId>jjwt-impl</artifactId> |
|
<version>${jwt.version}</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.jsonwebtoken</groupId> |
|
<artifactId>jjwt-jackson</artifactId> |
|
<version>${jwt.version}</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<version>${fastjson.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>${lombok.version}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.github.ulisesbocchio</groupId> |
|
<artifactId>jasypt-spring-boot-starter</artifactId> |
|
<version>2.1.2</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|