-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
41 lines (32 loc) · 1.19 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
34
35
36
37
38
39
40
// import Settings._
lazy val root = (project in file(".")).settings(
scalafmtOnCompile := true
)
name := "bewl"
version := "1.0"
scalaVersion := "2.13.2"
scalacOptions ++= Seq("-feature", "-deprecation")
resolvers += "Maven central" at "https://repo1.maven.org/maven2/"
//resolvers += Resolver.sonatypeRepo("releases")
resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
Test / parallelExecution := false
libraryDependencies ++= Seq(
"junit" % "junit" % "4.12" % "test" exclude(
"org.scala-lang.modules", "scala-xml_2.13"
),
"org.scalatest" %% "scalatest" % "3.2.0-M1" excludeAll(
ExclusionRule("org.scala-lang.modules", "scala-xml_2.13"),
ExclusionRule("org.scala-lang.modules", "scala-parser-combinators_2.13")
),
"org.scala-lang.modules" %% "scala-xml" % "2.0.0-M1",
"com.danielasfregola" %% "twitter4s" % "6.2" excludeAll(
ExclusionRule("com.typesafe.akka", "akka-http_2.13"),
ExclusionRule("com.typesafe.akka", "akka-stream_2.13"),
ExclusionRule("com.typesafe", "config")
),
"com.typesafe.akka" %% "akka-http" % "10.1.10",
"com.typesafe.akka" %% "akka-stream" % "2.6.0"
) map {
_ withSources() withJavadoc()
}