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.
166 lines
5.2 KiB
166 lines
5.2 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.cs</groupId> |
|
<artifactId>ccic-docking</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
|
|
<parent> |
|
<groupId>com.ccic.safeliab</groupId> |
|
<artifactId>cloud-dependencies</artifactId> |
|
<version>1.0</version> |
|
<relativePath/> <!-- lookup parent from repository --> |
|
</parent> |
|
|
|
<dependencies> |
|
|
|
<!--nacos-config--> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.ccic.safeliab</groupId> |
|
<artifactId>cloud-starter</artifactId> |
|
<version>1.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.ccic.safeliab</groupId> |
|
<artifactId>ccic-entity</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-undertow</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.undertow</groupId> |
|
<artifactId>undertow-servlet</artifactId> |
|
</dependency> |
|
|
|
|
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-core</artifactId> |
|
|
|
</dependency> |
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-classic</artifactId> |
|
|
|
</dependency> |
|
|
|
<!--base项目依赖--> |
|
<!--<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>1.1.1</version> |
|
</dependency>--> |
|
|
|
<!--<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
</dependency>--> |
|
|
|
<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 --> |
|
<dependency> |
|
<groupId>org.apache.velocity</groupId> |
|
<artifactId>velocity-engine-core</artifactId> |
|
</dependency> |
|
|
|
<!-- <dependency>--> |
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>--> |
|
<!-- </dependency>--> |
|
|
|
<!--<dependency> |
|
<groupId>com.github.pagehelper</groupId> |
|
<artifactId>pagehelper</artifactId> |
|
<version>4.1.6</version> |
|
</dependency>--> |
|
<!-- 人大金仓数据驱动--> |
|
<dependency> |
|
<groupId>com.kingbase8</groupId> |
|
<artifactId>kingbase8</artifactId> |
|
<version>8.6.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.zaxxer</groupId> |
|
<artifactId>HikariCP</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.bouncycastle</groupId> |
|
<artifactId>bcprov-jdk15on</artifactId> |
|
<version>1.70</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.yaml</groupId> |
|
<artifactId>snakeyaml</artifactId> |
|
<version>2.3-ccic</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project> |