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.
68 lines
2.3 KiB
68 lines
2.3 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> |
|
<artifactId>financial</artifactId> |
|
<groupId>com.daqing.financial</groupId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>com.daqing.framework</groupId> |
|
<artifactId>dq-framework-utils</artifactId> |
|
<name>系统通用的工具类utils</name> |
|
|
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>com.daqing.framework</groupId> |
|
<artifactId>dq-framework-common</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<version>2.1.8.RELEASE</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.aliyun.oss</groupId> |
|
<artifactId>aliyun-sdk-oss</artifactId> |
|
<version>2.8.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel</artifactId> |
|
<version>2.1.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml-schemas</artifactId> |
|
<version>3.15</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.tomcat.embed</groupId> |
|
<artifactId>tomcat-embed-core</artifactId> |
|
<version>9.0.37</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<version>5.1.9.RELEASE</version> |
|
<scope>compile</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<skip>true</skip> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project> |