-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
28 lines (23 loc) · 935 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
name := "Mongo-csv-importer"
version := "0.1"
libraryDependencies ++= {
val scalaTest: Seq[ModuleID] = {
val version = "3.2.18"
Seq(
"org.scalactic" %% "scalactic" % version,
"org.scalatest" % "scalatest_2.13" % version % "test"
)
}
Seq(
"org.mongodb.scala" %% "mongo-scala-driver" % "4.11.2",
"io.monix" %% "monix" % "3.4.1",
"org.typelevel" %% "cats-core" % "2.10.0",
"ch.qos.logback" % "logback-classic" % "1.5.6",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"com.typesafe" % "config" % "1.4.3",
"com.beachape" %% "enumeratum" % "1.7.3",
) ++ scalaTest
}
scalaVersion := "2.13.14"
//http://www.scalatest.org/user_guide/using_scalatest_with_sbt
logBuffered in Test := false