-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
25 lines (20 loc) · 697 Bytes
/
build.sbt
File metadata and controls
25 lines (20 loc) · 697 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
name := """scalaIO"""
version := "1.0-SNAPSHOT"
scalaVersion := "2.12.10"
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-ahc-ws-standalone" % "2.0.0-M3",
"com.typesafe.play" %% "play-json" % "2.6.10"
)
val sttpVersion = "2.0.0-M11"
libraryDependencies ++= Seq(
"com.softwaremill.sttp.client" %% "core",
"com.softwaremill.sttp.client" %% "async-http-client-backend-fs2",
"com.softwaremill.sttp.client" %% "async-http-client-backend-zio-streams"
).map(_ % sttpVersion)
val circeVersion = "0.12.0"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser",
"io.circe" %% "circe-fs2"
).map(_ % circeVersion)