48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
<?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>
|
|
|
|
<parent>
|
|
<groupId>com.dkha</groupId>
|
|
<!--新建时修改模块名称-->
|
|
<artifactId>dkha-system</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<!--新建时修改模块名称-->
|
|
<artifactId>dkha-system-client</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.dkha</groupId>
|
|
<artifactId>dkha-commons-tools</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dkha</groupId>
|
|
<artifactId>dkha-commons-swagger</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>2.1.6</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
</build>
|
|
|
|
</project>
|