Skip to content

Instantly share code, notes, and snippets.

@robdaemon
Last active December 22, 2015 16:29
Show Gist options
  • Save robdaemon/6499409 to your computer and use it in GitHub Desktop.
Save robdaemon/6499409 to your computer and use it in GitHub Desktop.
build.sbt that allows you to compile with the jersey-client 2.2 jar
name := "prefect"
version := "1.0"
scalaVersion := "2.10.2"
libraryDependencies ++= Seq(
"org.glassfish.jersey.core" % "jersey-client" % "2.2" excludeAll(
ExclusionRule(organization = "org.glassfish.hk2")
),
"org.glassfish.hk2" % "hk2-utils" % "2.2.0-b15",
"org.glassfish.hk2" % "hk2-locator" % "2.2.0-b15"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment