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.
90 lines
3.0 KiB
90 lines
3.0 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>blade-example</artifactId> |
|
<groupId>org.springblade</groupId> |
|
<version>2.4.0.RELEASE</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>blade-easypoi</artifactId> |
|
<name>${project.artifactId}</name> |
|
<version>${bladex.project.version}</version> |
|
<packaging>jar</packaging> |
|
|
|
<properties> |
|
<poi.version>4.1.1</poi.version> |
|
<easypoi.version>4.1.2</easypoi.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-launch</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.afterturn</groupId> |
|
<artifactId>easypoi-spring-boot-starter</artifactId> |
|
<version>${easypoi.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>${poi.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>${poi.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml-schemas</artifactId> |
|
<version>${poi.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.itextpdf</groupId> |
|
<artifactId>itextpdf</artifactId> |
|
<version>5.5.6</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.itextpdf</groupId> |
|
<artifactId>itext-asian</artifactId> |
|
<version>5.2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.7</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.el</groupId> |
|
<artifactId>javax.el-api</artifactId> |
|
<version>2.2.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.glassfish.web</groupId> |
|
<artifactId>javax.el</artifactId> |
|
<version>2.2.4</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>xerces</groupId> |
|
<artifactId>xercesImpl</artifactId> |
|
<version>2.9.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.bval</groupId> |
|
<artifactId>org.apache.bval.bundle</artifactId> |
|
<version>1.1.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.jsoup</groupId> |
|
<artifactId>jsoup</artifactId> |
|
<version>1.8.3</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
|
|
</project>
|
|
|