-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (27 loc) · 985 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 := "ScalaJam"
description := "Scala template for Google Code Jam"
scalaVersion := "2.11.7"
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2",
"com.softwaremill.scalamacrodebug" %% "macros" % "0.4",
//"org.scalacheck" %% "scalacheck" % "1.12.4" % Test,
"com.github.pathikrit" %% "better-files" % "2.15.0",
"org.scalatest" %% "scalatest" % "2.2.6" % Test
)
scalacOptions ++= Seq( // copied from https://tpolecat.github.io/2014/04/11/scalac-flags.html
"-deprecation",
"-encoding", "UTF-8", // yes, this is 2 args
"-feature",
"-language:_",
"-unchecked",
"-Xfatal-warnings",
"-Xlint",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Xfuture"
)
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-oDS")
logBuffered in Test := false
parallelExecution in Test := false