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.
111 lines
4.1 KiB
111 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>com.ccic.safeliab</groupId> |
|
<artifactId>cloud-dependencies</artifactId> |
|
<version>1.0</version> |
|
<packaging>pom</packaging> |
|
|
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.3.12.RELEASE</version> |
|
</parent> |
|
|
|
<properties> |
|
<maven.compiler.source>8</maven.compiler.source> |
|
<maven.compiler.target>8</maven.compiler.target> |
|
<mybatis-plus.version>3.0.5</mybatis-plus.version> |
|
<velocity.version>2.0</velocity.version> |
|
|
|
|
|
<jwt.version>0.11.2</jwt.version> |
|
<!-- <jwt.version>0.7.0</jwt.version>--> |
|
<fastjson.version>1.2.83</fastjson.version> |
|
<lombok.version>1.16.8</lombok.version> |
|
<hive-jdbc.version>2.3.9</hive-jdbc.version> |
|
<kingbase8.version>8.6.0</kingbase8.version> |
|
|
|
</properties> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-framework-bom</artifactId> |
|
<version>5.2.20.RELEASE</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId> |
|
<version>2.2.7.RELEASE</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-dependencies</artifactId> |
|
<version>2.3.12.RELEASE</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-dependencies</artifactId> |
|
<version>Hoxton.SR12</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
|
|
<!--mybatis-plus 持久层--> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
<version>${mybatis-plus.version}</version> |
|
</dependency> |
|
<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 --> |
|
<dependency> |
|
<groupId>org.apache.velocity</groupId> |
|
<artifactId>velocity-engine-core</artifactId> |
|
<version>${velocity.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<version>${fastjson.version}</version> |
|
</dependency> |
|
|
|
<!-- <dependency>--> |
|
<!-- <groupId>io.jsonwebtoken</groupId>--> |
|
<!-- <artifactId>jjwt</artifactId>--> |
|
<!-- <version>${jwt.version}</version>--> |
|
<!-- </dependency>--> |
|
<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> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
</project>
|
|
|