How to add a dependency to Maven
Add the following com.github.joschi.jersey.jetty10 : jersey-container-jetty-servlet maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.github.joschi.jersey.jetty10</groupId>
<artifactId>jersey-container-jetty-servlet</artifactId>
<version>2.40</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.github.joschi.jersey.jetty10 : jersey-container-jetty-servlet gradle dependency to your build.gradle
file:
implementation 'com.github.joschi.jersey.jetty10:jersey-container-jetty-servlet:2.40'
Gradle Kotlin DSL: Add the following com.github.joschi.jersey.jetty10 : jersey-container-jetty-servlet gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.github.joschi.jersey.jetty10:jersey-container-jetty-servlet:2.40")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.github.joschi.jersey.jetty10 : jersey-container-jetty-servlet sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.github.joschi.jersey.jetty10" % "jersey-container-jetty-servlet" % "2.40"