Maven Dependency xml-apis >> 1.2.01

In this page we are giving Maven Dependency of xml-apis >> xml-apis version1.2.01

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of xml-apis >> xml-apis version1.2.01 in your project.

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

Maven dependency automatically download dependent library of xml-apis version 1.2.01 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 xml-apis version 1.2.01

Maven dependency of xml-apis version 1.2.01:

<dependency>
	<groupId>xml-apis</groupId>
	<artifactId>xml-apis</artifactId>
	<version>1.2.01</version>
</dependency>

Gradle Dependency of xml-apis version 1.2.01

compile group: 'xml-apis', name: 'xml-apis', version: '1.2.01'

SBT Dependency of xml-apis version 1.2.01

libraryDependencies += "xml-apis" % "xml-apis" % "1.2.01"

Ivy Dependency of xml-apis version 1.2.01

<dependency org="xml-apis" name="xml-apis" rev="1.2.01"/>

Grape Dependency of xml-apis version 1.2.01

@Grapes(
    @Grab(group='xml-apis', module='xml-apis', version='1.2.01')
)

Leiningen Dependency of xml-apis version 1.2.01

[xml-apis/xml-apis "1.2.01"]

Buildr Dependency of xml-apis version 1.2.01

'xml-apis:xml-apis:jar:1.2.01'

Advertisements

Ads