-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
30 lines (22 loc) · 749 Bytes
/
build.sbt
File metadata and controls
30 lines (22 loc) · 749 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
27
28
29
30
name := "encoder-decoder"
version := "0.1"
scalaVersion := "2.12.8"
val JacksonEncoderVersion = "2.10.0.pr1"
val circeVersion = "0.10.0"
////
////
libraryDependencies ++= Seq(
"com.fasterxml.jackson.core" % "jackson-core" % JacksonEncoderVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % JacksonEncoderVersion,
"com.fasterxml.jackson.datatype" % "jackson-datatype-jdk8" % JacksonEncoderVersion
)
//
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
////
////
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.7.0-M1"
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)