-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
22 lines (22 loc) · 1.07 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lazy val root = (project in file(".")).
settings(
organization := "com.rusticisoftware.cloud.v2.client",
name := "scormcloud-api-v2-client",
version := "4.0.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
publishArtifact in (Compile, packageDoc) := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
"io.swagger" % "swagger-annotations" % "1.5.17",
"org.glassfish.jersey.core" % "jersey-client" % "2.34",
"org.glassfish.jersey.media" % "jersey-media-multipart" % "2.34",
"org.glassfish.jersey.inject" % "jersey-hk2" % "2.34",
"org.glassfish.jersey.media" % "jersey-media-json-jackson" % "2.34",
"com.fasterxml.jackson.core" % "jackson-core" % "2.13.5" % "compile",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.13.5" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.13.5" % "compile",
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.13.5" % "compile"
)
)