How to add a dependency to Maven
Add the following org.eclipse.jetty.gcloud : gcloud-session-manager maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>org.eclipse.jetty.gcloud</groupId>
<artifactId>gcloud-session-manager</artifactId>
<version>9.3.6.v20151106</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following org.eclipse.jetty.gcloud : gcloud-session-manager gradle dependency to your build.gradle
file:
implementation 'org.eclipse.jetty.gcloud:gcloud-session-manager:9.3.6.v20151106'
Gradle Kotlin DSL: Add the following org.eclipse.jetty.gcloud : gcloud-session-manager gradle kotlin dependency to your build.gradle.kts
file:
implementation("org.eclipse.jetty.gcloud:gcloud-session-manager:9.3.6.v20151106")
How to add a dependency to SBT Scala
SBT Scala: Add the following org.eclipse.jetty.gcloud : gcloud-session-manager sbt scala dependency to your build.sbt
file:
libraryDependencies += "org.eclipse.jetty.gcloud" % "gcloud-session-manager" % "9.3.6.v20151106"