Maven Dependency poi >> 3.1-FINAL

In this page we are giving Maven Dependency of poi >> poi version3.1-FINAL

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of poi >> poi version3.1-FINAL in your project.

In this page we are going to discuss about poi version 3.1-FINAL maven dependencies. Maven tool is project management tool which you use to manage your project and easily use poi version 3.1-FINAL dependency by just including the code discussed here in pom.xml file of your Maven project.

Maven dependency automatically download dependent library of poi version 3.1-FINAL and include the necessary jar files in the project.

Code given here should be included inside <dependencies> ...... </dependencies> tag in the Maven configuration file pom.xml.

We also explained you dependency code of different build system like Gradle Dependency, SBT Dependency, Ivy Dependency, Grape Dependency etc...

Maven dependency of poi version 3.1-FINAL

Maven dependency of poi version 3.1-FINAL:

<dependency>
	<groupId>poi</groupId>
	<artifactId>poi</artifactId>
	<version>3.1-FINAL</version>
</dependency>

Gradle Dependency of poi version 3.1-FINAL

compile group: 'poi', name: 'poi', version: '3.1-FINAL'

SBT Dependency of poi version 3.1-FINAL

libraryDependencies += "poi" % "poi" % "3.1-FINAL"

Ivy Dependency of poi version 3.1-FINAL

<dependency org="poi" name="poi" rev="3.1-FINAL"/>

Grape Dependency of poi version 3.1-FINAL

@Grapes(
    @Grab(group='poi', module='poi', version='3.1-FINAL')
)

Leiningen Dependency of poi version 3.1-FINAL

[poi/poi "3.1-FINAL"]

Buildr Dependency of poi version 3.1-FINAL

'poi:poi:jar:3.1-FINAL'

Advertisements

Ads