-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
42 lines (38 loc) · 828 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
42
import Dependencies._
ThisBuild / organization := "com.github.tkrs"
ThisBuild / name := "json-bench"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.3"
ThisBuild / scalafmtOnCompile := true
libraryDependencies ++= Seq(
argonaut,
circeCore,
circeGeneric,
circeJackson,
circeParser,
jsoniterScalaCore,
jsoniterScalaMacros,
sprayJson,
uJson,
uPickle,
scalaTest % Test
).map(_.withSources)
enablePlugins(JmhPlugin)
scalafmtOnCompile := true // all projects
scalacOptions := Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-explaintypes",
"-unchecked",
"-feature",
"-language:existentials",
"-language:experimental.macros",
"-language:higherKinds",
"-Xcheckinit",
"-Xlint",
"-Ydelambdafy:method",
"-opt-inline-from:**",
"-opt:l:inline",
"-opt-warnings"
)