MVN

org.safehaus.jettyjam : jettyjam-https

Maven & Gradle

May 04, 2014

JettyJam HTTPS Example · A simple https servlet that runs in an embedded jetty instance from an executable jar file without requiring the webapp to be exploded.

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

Latest Version

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

  • Latest Stable: 2.1.5

All Versions

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

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

How to add a dependency to Maven

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

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

How to add a dependency to Gradle

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

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

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

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

How to add a dependency to SBT Scala

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

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

Advertisement