-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
executable file
·34 lines (28 loc) · 1.33 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
25
26
27
28
29
30
31
32
33
name := "scala-json-benchmark"
version := "1.0.1"
scalaVersion := "2.12.8"
resolvers ++= Seq(
"Maven repo" at "http://repo1.maven.org/maven2",
"Spring repo" at "http://repo.springsource.org/libs-release",
"Apache repo" at "https://repository.apache.org/content/repositories/releases",
"JBoss repo" at "http://repository.jboss.org/nexus/content/groups/public-jboss",
"Sonatype repo" at "https://oss.sonatype.org/content/repositories/releases",
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Mvnrepository" at "http://mvnrepository.com/artifact"
)
libraryDependencies ++= Seq(
"org.json4s" %% "json4s-jackson" % "3.6.4",
"io.spray" %% "spray-json" % "1.3.5",
"net.liftweb" %% "lift-json" % "3.3.0",
"com.typesafe.play" %% "play-json" % "2.6.10",
"io.circe" %% "circe-core" % "0.11.1",
"io.circe" %% "circe-generic" % "0.11.1",
"io.circe" %% "circe-parser" % "0.11.1",
"io.argonaut" %% "argonaut" % "6.2.2",
"io.argonaut" %% "argonaut-scalaz" % "6.2.2",
"io.argonaut" %% "argonaut-monocle" % "6.2.2",
"io.argonaut" %% "argonaut-cats" % "6.2.2",
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "0.41.0" % Compile,
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "0.41.0" % Provided // required only in compile-time
)
enablePlugins(JmhPlugin)