MVN

org.mortbay.jetty : jetty-grizzly

Maven & Gradle

Oct 30, 2008

Jetty Contrib :: Grizzly Integration

<dependency>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-grizzly</artifactId>
    <version>7.0.0.pre5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.mortbay.jetty : jetty-grizzly to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 6.1.3

All Versions

Choose a version of org.mortbay.jetty : jetty-grizzly to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
7.0.x
jetty-grizzly-7.0.0.pre5
jetty-grizzly-7.0.0.pre4
jetty-grizzly-7.0.0pre3
jetty-grizzly-7.0.0pre2
jetty-grizzly-7.0.0pre1
jetty-grizzly-7.0.0pre0
6.1.x
jetty-grizzly-6.1.3
jetty-grizzly-6.1.2
jetty-grizzly-6.1.1
jetty-grizzly-6.1.0
jetty-grizzly-6.1.2rc5
jetty-grizzly-6.1.2rc4
jetty-grizzly-6.1.2rc2
jetty-grizzly-6.1.2rc1
jetty-grizzly-6.1.2rc0
jetty-grizzly-6.1.2pre1
jetty-grizzly-6.1.2pre0
jetty-grizzly-6.1.1rc1
jetty-grizzly-6.1.1rc0
jetty-grizzly-6.1.0rc3
jetty-grizzly-6.1.0rc2
jetty-grizzly-6.1.0rc1
jetty-grizzly-6.1.0rc0
jetty-grizzly-6.1.0pre3
jetty-grizzly-6.1.0pre2
jetty-grizzly-6.1.0pre1
jetty-grizzly-6.1.0pre0

How to add a dependency to Maven

Add the following org.mortbay.jetty : jetty-grizzly maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-grizzly</artifactId>
    <version>7.0.0.pre5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.mortbay.jetty : jetty-grizzly gradle dependency to your build.gradle file:

implementation 'org.mortbay.jetty:jetty-grizzly:7.0.0.pre5'

Gradle Kotlin DSL: Add the following org.mortbay.jetty : jetty-grizzly gradle kotlin dependency to your build.gradle.kts file:

implementation("org.mortbay.jetty:jetty-grizzly:7.0.0.pre5")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.mortbay.jetty : jetty-grizzly sbt scala dependency to your build.sbt file:

libraryDependencies += "org.mortbay.jetty" % "jetty-grizzly" % "7.0.0.pre5"

Advertisement