-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
41 lines (32 loc) · 977 Bytes
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name := "akka-argonaut"
organization := "org.vikraman"
description := "Argonaut json marshalling for akka streams"
homepage := Some(url(s"https://github.com/vikraman/${name.value}"))
licenses += "MIT" -> url(
s"https://github.com/vikraman/${name.value}/blob/${version.value}/LICENSE"
)
scalaVersion in ThisBuild := "2.13.1"
scalacOptions in ThisBuild := Seq(
"-encoding",
"UTF-8",
"-deprecation",
"-unchecked",
"-feature",
"-Xlint"
)
fork := true
crossScalaVersions := Seq("2.12.10", "2.13.1")
libraryDependencies ++= {
val akkaV = "2.6.1"
val akkaHttpV = "10.1.11"
val argonautV = "6.2.3"
val scalaTestV = "3.1.0"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV % Test,
"io.argonaut" %% "argonaut" % argonautV,
"org.scalatest" %% "scalatest" % scalaTestV % Test
)
}