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.
67 lines
2.2 KiB
67 lines
2.2 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>jnpf-java-cloud</artifactId> |
|
<groupId>com.jnpf</groupId> |
|
<version>3.7.0-RELEASE</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>jnpf-library</artifactId> |
|
<packaging>pom</packaging> |
|
<modules> |
|
<module>jnpf-library-controller</module> |
|
<module>jnpf-library-biz</module> |
|
<module>jnpf-library-entity</module> |
|
<module>jnpf-library-api</module> |
|
<module>jnpf-library-server</module> |
|
<!-- <module>jnpf-library-dubboservice</module>--> |
|
</modules> |
|
<description> |
|
dsadas |
|
</description> |
|
|
|
<dependencies> |
|
<!-- Apache POI核心库 --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>5.2.3</version> |
|
</dependency> |
|
|
|
<!-- Apache POI 对 Excel 的支持 --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>5.2.3</version> |
|
</dependency> |
|
|
|
<!-- Apache POI 对 Word 的支持 --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml-schemas</artifactId> |
|
<version>4.1.2</version> |
|
</dependency> |
|
|
|
<!-- Apache POI 对图片的支持 --> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-scratchpad</artifactId> |
|
<version>5.2.3</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger2</artifactId> |
|
<version>2.9.2</version> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>swagger-models</artifactId> |
|
<groupId>io.swagger</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|