Maven Dependency itext >> 0.99

In this page we are giving Maven Dependency of com.lowagie >> itext version0.99

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of com.lowagie >> itext version0.99 in your project.

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

Maven dependency automatically download dependent library of itext version 0.99 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 itext version 0.99

Maven dependency of itext version 0.99:

<dependency>
	<groupId>com.lowagie</groupId>
	<artifactId>itext</artifactId>
	<version>0.99</version>
</dependency>

Gradle Dependency of itext version 0.99

compile group: 'com.lowagie', name: 'itext', version: '0.99'

SBT Dependency of itext version 0.99

libraryDependencies += "com.lowagie" % "itext" % "0.99"

Ivy Dependency of itext version 0.99

<dependency org="com.lowagie" name="itext" rev="0.99"/>

Grape Dependency of itext version 0.99

@Grapes(
    @Grab(group='com.lowagie', module='itext', version='0.99')
)

Leiningen Dependency of itext version 0.99

[com.lowagie/itext "0.99"]

Buildr Dependency of itext version 0.99

'com.lowagie:itext:jar:0.99'

Advertisements

Ads