Maven Dependency jetty >> 6.0.0beta6

In this page we are giving Maven Dependency of jetty >> jetty version6.0.0beta6

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of jetty >> jetty version6.0.0beta6 in your project.

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

Maven dependency automatically download dependent library of jetty version 6.0.0beta6 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 jetty version 6.0.0beta6

Maven dependency of jetty version 6.0.0beta6:

<dependency>
	<groupId>jetty</groupId>
	<artifactId>jetty</artifactId>
	<version>6.0.0beta6</version>
</dependency>

Gradle Dependency of jetty version 6.0.0beta6

compile group: 'jetty', name: 'jetty', version: '6.0.0beta6'

SBT Dependency of jetty version 6.0.0beta6

libraryDependencies += "jetty" % "jetty" % "6.0.0beta6"

Ivy Dependency of jetty version 6.0.0beta6

<dependency org="jetty" name="jetty" rev="6.0.0beta6"/>

Grape Dependency of jetty version 6.0.0beta6

@Grapes(
    @Grab(group='jetty', module='jetty', version='6.0.0beta6')
)

Leiningen Dependency of jetty version 6.0.0beta6

[jetty/jetty "6.0.0beta6"]

Buildr Dependency of jetty version 6.0.0beta6

'jetty:jetty:jar:6.0.0beta6'

Advertisements

Ads