MVN

com.sun.jersey : jersey

Maven & Gradle

Aug 03, 2011
3 usages

Jersey - JSR 311 Reference Implementation · Open source JAX-RS (JSR 311) Reference Implementation for building RESTful Web services

<dependency>
    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey</artifactId>
    <version>0.8-ea</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.sun.jersey : jersey to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.8-ea

All Versions

Choose a version of com.sun.jersey : jersey to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.8
jersey-0.8-ea

How to add a dependency to Maven

Add the following com.sun.jersey : jersey maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.sun.jersey</groupId>
    <artifactId>jersey</artifactId>
    <version>0.8-ea</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.sun.jersey : jersey gradle dependency to your build.gradle file:

implementation 'com.sun.jersey:jersey:0.8-ea'

Gradle Kotlin DSL: Add the following com.sun.jersey : jersey gradle kotlin dependency to your build.gradle.kts file:

implementation("com.sun.jersey:jersey:0.8-ea")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.sun.jersey : jersey sbt scala dependency to your build.sbt file:

libraryDependencies += "com.sun.jersey" % "jersey" % "0.8-ea"