-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (19 loc) · 802 Bytes
/
build.sbt
File metadata and controls
26 lines (19 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name := "algorithmia-client"
organization := "com.algorithmia"
version := "1.3.8"
autoScalaLibrary := false
// More compiler warnings
scalacOptions ++= Seq("-deprecation", "-unchecked", "-source 11", "-feature", "-Xlint", "-target:jvm-1.11")
libraryDependencies ++= Seq(
"com.google.code.gson" % "gson" % "2.8.6",
"org.apache.httpcomponents" % "httpasyncclient" % "4.1.4",
"commons-io" % "commons-io" % "2.8.0",
"com.novocode" % "junit-interface" % "0.11" % "test->default",
"org.json" % "json" % "20090211",
"org.junit.jupiter" % "junit-jupiter-api" % "5.7.0" % "test",
"junit" % "junit" % "4.12" % Test,
"org.projectlombok" % "lombok" % "1.18.2",
"org.mockito" % "mockito-core" % "3.6.0" % Test
)
// Disable using the Scala version in published artifacts
crossPaths := false