-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.sbt
21 lines (19 loc) · 880 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
val ScalaTestVersion = "3.2.17"
val FlexmarkVersion = "0.64.8"
scalafmtOnCompile := true
lazy val root = (project in file("."))
.settings(
organization := "io.github.sentenza.hacktoberfest",
name := "hacktoberfest-algorithms",
version := "0.12.0",
scalaVersion := "2.13.12",
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % "2.13.12",
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test,
"org.scalatestplus" %% "mockito-3-4" % "3.2.10.0" % Test,
"org.scalactic" %% "scalactic" % ScalaTestVersion % Test,
"com.vladsch.flexmark" % "flexmark-all" % FlexmarkVersion % Test
),
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
)