Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Created November 7, 2018 08:33
Show Gist options
  • Select an option

  • Save Ikhiloya/98dc9b16676d37973a313711ecc9bcab to your computer and use it in GitHub Desktop.

Select an option

Save Ikhiloya/98dc9b16676d37973a313711ecc9bcab to your computer and use it in GitHub Desktop.
Dependencies for Apache Excel Reader
<!-- 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