106 lines
4.0 KiB
XML
106 lines
4.0 KiB
XML
|
|
<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>
|
|||
|
|
<parent>
|
|||
|
|
<groupId>com.njcn</groupId>
|
|||
|
|
<artifactId>data-migration</artifactId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
</parent>
|
|||
|
|
<name>mysql-source</name>
|
|||
|
|
<artifactId>mysql-source</artifactId>
|
|||
|
|
|
|||
|
|
<properties>
|
|||
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|||
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
|
|
</properties>
|
|||
|
|
|
|||
|
|
<dependencies>
|
|||
|
|
<!--java简化开发工具-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.projectlombok</groupId>
|
|||
|
|
<artifactId>lombok</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!--java工具包-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>cn.hutool</groupId>
|
|||
|
|
<artifactId>hutool-all</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
|||
|
|
<exclusions>
|
|||
|
|
<exclusion>
|
|||
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|||
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
|||
|
|
</exclusion>
|
|||
|
|
</exclusions>
|
|||
|
|
</dependency>
|
|||
|
|
<!-- Actuator监控当前应用的健康,虚拟机等信息,通过前端以可视化的界面展示出来 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!--测试依赖-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.springframework.boot</groupId>
|
|||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!-- commons通用包 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.apache.commons</groupId>
|
|||
|
|
<artifactId>commons-lang3</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>commons-io</groupId>
|
|||
|
|
<artifactId>commons-io</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>commons-codec</groupId>
|
|||
|
|
<artifactId>commons-codec</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!--API接口文档-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.github.xiaoymin</groupId>
|
|||
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.github.xiaoymin</groupId>
|
|||
|
|
<artifactId>knife4j-spring-ui</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!--jackson依赖-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|||
|
|
<artifactId>jackson-databind</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<!--此处需要注意的事,databind自身依赖的jackson-core/jackson-annotations由于版本偏低,会出现异常-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|||
|
|
<artifactId>jackson-core</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|||
|
|
<artifactId>jackson-annotations</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|||
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.njcn</groupId>
|
|||
|
|
<artifactId>oracle-source</artifactId>
|
|||
|
|
<version>1.0.0</version>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>org.apache.commons</groupId>
|
|||
|
|
<artifactId>commons-collections4</artifactId>
|
|||
|
|
<version>4.4</version>
|
|||
|
|
</dependency>
|
|||
|
|
<!--mysql驱动-->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>mysql</groupId>
|
|||
|
|
<artifactId>mysql-connector-java</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
</dependencies>
|
|||
|
|
</project>
|