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.8 KiB
87 lines
2.8 KiB
<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>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.0.2.RELEASE</version> |
|
</parent> |
|
<groupId>vip.xumy.core</groupId> |
|
<artifactId>xumy_core</artifactId> |
|
<version>0.0.1</version> |
|
<name>xumy_core</name> |
|
<description>xumy_core</description> |
|
<packaging>jar</packaging> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<mybatis-spring-boot.version>1.3.2</mybatis-spring-boot.version> |
|
<log4j.version>1.2.17</log4j.version> |
|
<fastjson.version>1.2.46</fastjson.version> |
|
<apache.poi.version>4.0.1</apache.poi.version> |
|
<dom4j.version>2.0.0</dom4j.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<!-- log4j2 --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-log4j2</artifactId> |
|
</dependency> |
|
<!-- SpringBoot 的测试依赖 --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<!-- spring-boot整合mybatis --> |
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>${mybatis-spring-boot.version}</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
</dependency> |
|
<!-- fastjson --> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<version>${fastjson.version}</version> |
|
</dependency> |
|
<!-- httpclient --> |
|
<dependency> |
|
<groupId>org.apache.httpcomponents</groupId> |
|
<artifactId>httpclient</artifactId> |
|
</dependency> |
|
<!-- poi-ooxml --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>${apache.poi.version}</version> |
|
</dependency> |
|
<!-- https://mvnrepository.com/artifact/org.dom4j/dom4j --> |
|
<dependency> |
|
<groupId>org.dom4j</groupId> |
|
<artifactId>dom4j</artifactId> |
|
<version>${dom4j.version}</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</project> |