-
Notifications
You must be signed in to change notification settings - Fork 23
/
build.sbt
29 lines (20 loc) · 856 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
name := "twitter4s-demo"
version := "0.1"
scalaVersion := "2.13.8"
resolvers += Resolver.sonatypeRepo("releases")
scalacOptions in ThisBuild ++= Seq("-language:postfixOps",
"-language:implicitConversions",
"-language:existentials",
"-feature",
"-deprecation",
"-encoding",
"UTF-8",
"-Xlint",
"-Xfatal-warnings",
"-unchecked")
scalafmtTestOnCompile := true
scalafmtShowDiff in scalafmt := true
libraryDependencies ++= Seq(
"com.danielasfregola" %% "twitter4s" % "7.0",
"ch.qos.logback" % "logback-classic" % "1.2.11"
)