-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.sbt
24 lines (24 loc) · 1.24 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
23
24
lazy val root = (project in file(".")).
settings(
organization := "com.zendesk",
name := "sunshine-conversations-client",
version := "14.3.3",
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.22" % "compile",
"org.jboss.resteasy" % "resteasy-client" % "6.2.4.Final" % "compile",
"org.jboss.resteasy" % "resteasy-multipart-provider" % "6.2.4.Final" % "compile",
"org.jboss.resteasy" % "resteasy-jackson2-provider" % "6.2.4.Final" % "compile",
"com.fasterxml.jackson.core" % "jackson-core" % "2.14.3" % "compile",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.14.3" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.14.3" % "compile",
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.15.2" % "compile",
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.14.3" % "compile",
"junit" % "junit" % "5.9.2" % "test",
"net.aichler" % "jupiter-interface" % "0.11.1" % "test"
)
)