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.
57 lines
2.1 KiB
57 lines
2.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"> |
|
<parent> |
|
<groupId>com.mh</groupId> |
|
<artifactId>mh_esi</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>com.mh</groupId> |
|
<artifactId>common</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<packaging>jar</packaging> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<encoding>UTF-8</encoding> |
|
<java.version>1.8</java.version> |
|
<maven.compiler.source>1.8</maven.compiler.source> |
|
<maven.compiler.target>1.8</maven.compiler.target> |
|
</properties> |
|
<dependencies> |
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 --> |
|
<dependency> |
|
<groupId>com.alibaba.fastjson2</groupId> |
|
<artifactId>fastjson2</artifactId> |
|
<version>2.0.51</version> |
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter --> |
|
<dependency> |
|
<groupId>com.github.pagehelper</groupId> |
|
<artifactId>pagehelper-spring-boot-starter</artifactId> |
|
<version>1.2.13</version> |
|
</dependency> |
|
<!-- web --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
</dependency> |
|
<!-- commons-beanutils --> |
|
<dependency> |
|
<groupId>commons-beanutils</groupId> |
|
<artifactId>commons-beanutils</artifactId> |
|
<version>1.9.3</version> |
|
</dependency> |
|
<!-- poi --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>4.0.1</version> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|