Created
November 7, 2018 08:33
-
-
Save Ikhiloya/98dc9b16676d37973a313711ecc9bcab to your computer and use it in GitHub Desktop.
Dependencies for Apache Excel Reader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> | |
| <dependency> | |
| <groupId>org.apache.poi</groupId> | |
| <artifactId>poi</artifactId> | |
| <version>4.0.0</version> | |
| </dependency> | |
| <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> | |
| <dependency> | |
| <groupId>org.apache.poi</groupId> | |
| <artifactId>poi-ooxml</artifactId> | |
| <version>4.0.0</version> | |
| </dependency> | |
| <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 --> | |
| <dependency> | |
| <groupId>org.apache.commons</groupId> | |
| <artifactId>commons-collections4</artifactId> | |
| <version>4.1</version> | |
| </dependency> | |
| <!-- https://mvnrepository.com/artifact/org.apache.xmlbeans/xmlbeans --> | |
| <dependency> | |
| <groupId>org.apache.xmlbeans</groupId> | |
| <artifactId>xmlbeans</artifactId> | |
| <version>3.0.1</version> | |
| </dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment