-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
30 lines (25 loc) · 884 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
mainClass := Some("com.pbassiner.fstree2md.Main")
fork in run := true
name := "fstree2md"
organization := "com.pbassiner"
version := "0.1.0"
scalaVersion := "2.11.8"
scalacOptions ++= Seq("-unchecked", "-feature", "-deprecation", "-encoding", "utf8")
wartremoverWarnings ++= Warts.allBut(Wart.Throw)
libraryDependencies ++= {
val scalaTestV = "3.0.0-M15"
val scalaMockV = "3.2.2"
Seq(
"org.scalatest" %% "scalatest" % scalaTestV % "test",
"org.scalamock" %% "scalamock-scalatest-support" % scalaMockV % "test",
"com.typesafe" % "config" % "1.3.0",
"com.lihaoyi" %% "ammonite-ops" % "0.6.2"
)
}
dependencyOverrides ++= {
Set(
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
"org.scala-lang" % "scala-library" % scalaVersion.value
)
}
scalariformSettings