79 lines
2.9 KiB
XML
79 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<artifactId>apache-poi-3</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>apache-poi-3</name>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.ozlerhakan</groupId>
|
|
<artifactId>poiji</artifactId>
|
|
<version>${poiji.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-schemas</artifactId>
|
|
<version>${poi-ooxml-schemas.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xmlbeans</groupId>
|
|
<artifactId>xmlbeans</artifactId>
|
|
<version>${xmlbeans.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>${commons-collections4.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.dhatim</groupId>
|
|
<artifactId>fastexcel</artifactId>
|
|
<version>${fastexcel.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.dhatim</groupId>
|
|
<artifactId>fastexcel-reader</artifactId>
|
|
<version>${fastexcel.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sourceforge.jexcelapi</groupId>
|
|
<artifactId>jxl</artifactId>
|
|
<version>${jxl.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<poi.version>5.2.5</poi.version>
|
|
<poi-ooxml-schemas.version>4.1.2</poi-ooxml-schemas.version>
|
|
<poiji.version>4.2.0</poiji.version>
|
|
<xmlbeans.version>5.2.0</xmlbeans.version>
|
|
<commons-collections4.version>4.4</commons-collections4.version>
|
|
<fastexcel.version>0.17.0</fastexcel.version>
|
|
<jxl.version>2.6.12</jxl.version>
|
|
</properties>
|
|
|
|
</project> |