MVN

org.safehaus.jettyjam : jettyjam-rest

Maven & Gradle

May 04, 2014

JettyJam JSON REST · An embedded Jetty, Jackson, Jersey based REST application example.

<dependency>
    <groupId>org.safehaus.jettyjam</groupId>
    <artifactId>jettyjam-rest</artifactId>
    <version>2.1.5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.safehaus.jettyjam : jettyjam-rest to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1.5

All Versions

Choose a version of org.safehaus.jettyjam : jettyjam-rest to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1.x
jettyjam-rest-2.1.5
jettyjam-rest-2.1.4
jettyjam-rest-2.1.3
2.0.x
jettyjam-rest-2.0.0
1.0.x
jettyjam-rest-1.0.2

How to add a dependency to Maven

Add the following org.safehaus.jettyjam : jettyjam-rest maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.safehaus.jettyjam</groupId>
    <artifactId>jettyjam-rest</artifactId>
    <version>2.1.5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.safehaus.jettyjam : jettyjam-rest gradle dependency to your build.gradle file:

implementation 'org.safehaus.jettyjam:jettyjam-rest:2.1.5'

Gradle Kotlin DSL: Add the following org.safehaus.jettyjam : jettyjam-rest gradle kotlin dependency to your build.gradle.kts file:

implementation("org.safehaus.jettyjam:jettyjam-rest:2.1.5")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.safehaus.jettyjam : jettyjam-rest sbt scala dependency to your build.sbt file:

libraryDependencies += "org.safehaus.jettyjam" % "jettyjam-rest" % "2.1.5"