-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (21 loc) · 888 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
30
31
32
33
import sbt.{TestFrameworks, Tests}
name := "macro-problems"
organization := "pl.codeplay"
version := "0.0.0"
scalaVersion := "2.11.1"
scalacOptions ++= Seq("-feature", "-deprecation")
testOptions in Test += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s", "-a")
testOptions in Test += Tests.Argument(TestFrameworks.ScalaTest, "-oDS")
parallelExecution in Test := false
logBuffered := false
net.virtualvoid.sbt.graph.Plugin.graphSettings
org.scalastyle.sbt.ScalastylePlugin.Settings
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.7",
"org.joda" % "joda-convert" % "1.7",
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
"org.scalatest" %% "scalatest" % "2.2.5" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.2.2" % "test",
"junit" % "junit" % "4.12" % "test"
)