Maven Dependency tomcat-coyote >> 5.5.9-alpha

In this page we are giving Maven Dependency of tomcat >> tomcat-coyote version5.5.9-alpha

Ads

Tutorials   

You should include the dependency code given in this page to add Maven Dependency of tomcat >> tomcat-coyote version5.5.9-alpha in your project.

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

Maven dependency automatically download dependent library of tomcat-coyote version 5.5.9-alpha 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 tomcat-coyote version 5.5.9-alpha

Maven dependency of tomcat-coyote version 5.5.9-alpha:

<dependency>
	<groupId>tomcat</groupId>
	<artifactId>tomcat-coyote</artifactId>
	<version>5.5.9-alpha</version>
</dependency>

Gradle Dependency of tomcat-coyote version 5.5.9-alpha

compile group: 'tomcat', name: 'tomcat-coyote', version: '5.5.9-alpha'

SBT Dependency of tomcat-coyote version 5.5.9-alpha

libraryDependencies += "tomcat" % "tomcat-coyote" % "5.5.9-alpha"

Ivy Dependency of tomcat-coyote version 5.5.9-alpha

<dependency org="tomcat" name="tomcat-coyote" rev="5.5.9-alpha"/>

Grape Dependency of tomcat-coyote version 5.5.9-alpha

@Grapes(
    @Grab(group='tomcat', module='tomcat-coyote', version='5.5.9-alpha')
)

Leiningen Dependency of tomcat-coyote version 5.5.9-alpha

[tomcat/tomcat-coyote "5.5.9-alpha"]

Buildr Dependency of tomcat-coyote version 5.5.9-alpha

'tomcat:tomcat-coyote:jar:5.5.9-alpha'

Advertisements