49 lines
1.6 KiB
XML
49 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">
|
|
<parent>
|
|
<artifactId>ho-cloud</artifactId>
|
|
<groupId>com.hoenergy</groupId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>business-service-api</artifactId>
|
|
|
|
<properties>
|
|
<common-tools.version>1.0</common-tools.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!--工具类-->
|
|
<dependency>
|
|
<groupId>com.hoenergy</groupId>
|
|
<artifactId>common-tools</artifactId>
|
|
<version>${common-tools.version}</version>
|
|
</dependency>
|
|
<!--引入深拷贝-->
|
|
<dependency>
|
|
<groupId>net.rakugakibox.spring.boot</groupId>
|
|
<artifactId>orika-spring-boot-starter</artifactId>
|
|
<version>1.9.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-annotation</artifactId>
|
|
<version>4.3.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>3.1.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-spring-boot-starter</artifactId>
|
|
<version>4.3.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |