META-INF.maven.com.github.ifeilong.feilong-office-excel.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feilong Show documentation
Show all versions of feilong Show documentation
feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.ifeilong</groupId> <artifactId>feilong-office-parent</artifactId> <version>4.1.1</version> </parent> <artifactId>feilong-office-excel</artifactId> <dependencies> <!-- ***************************** poi ***************************** --> <!-- poi HSSF is our port of the Microsoft Excel 97(-2007) file format (BIFF8) to pure Java. --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <optional>true</optional> </dependency> <!-- poi-ooxml XSSF is our port of the Microsoft Excel XML (2007+) file format (OOXML) to pure Java --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <optional>true</optional> </dependency> <!-- poi-ooxml-schemas是ooxml-schemas的精简版 --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>ooxml-schemas</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.github.ifeilong</groupId> <artifactId>feilong-lib-ognl</artifactId> <version>${version.feilong-platform}</version> </dependency> <dependency> <groupId>com.github.ifeilong</groupId> <artifactId>feilong-lib-commons-digester3</artifactId> <version>${version.feilong-platform}</version> </dependency> <dependency> <groupId>com.github.ifeilong</groupId> <artifactId>feilong-core-extension</artifactId> <version>${version.feilong-platform}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>