Maven Dependency axis2-core >> 0.94

In this page we are giving Maven Dependency of axis2 >> axis2-core version0.94

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of axis2 >> axis2-core version0.94 in your project.

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

Maven dependency automatically download dependent library of axis2-core version 0.94 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 axis2-core version 0.94

Maven dependency of axis2-core version 0.94:

<dependency>
	<groupId>axis2</groupId>
	<artifactId>axis2-core</artifactId>
	<version>0.94</version>
</dependency>

Gradle Dependency of axis2-core version 0.94

compile group: 'axis2', name: 'axis2-core', version: '0.94'

SBT Dependency of axis2-core version 0.94

libraryDependencies += "axis2" % "axis2-core" % "0.94"

Ivy Dependency of axis2-core version 0.94

<dependency org="axis2" name="axis2-core" rev="0.94"/>

Grape Dependency of axis2-core version 0.94

@Grapes(
    @Grab(group='axis2', module='axis2-core', version='0.94')
)

Leiningen Dependency of axis2-core version 0.94

[axis2/axis2-core "0.94"]

Buildr Dependency of axis2-core version 0.94

'axis2:axis2-core:jar:0.94'

Advertisements

Ads