-
Etienne Kneuss authored
Ensures that tests run in an acceptable amount of time. Needs at least 5 runs. Can cause failures of test-only due to warm-up and class loading effects.
Etienne Kneuss authoredEnsures that tests run in an acceptable amount of time. Needs at least 5 runs. Can cause failures of test-only due to warm-up and class loading effects.
build.sbt 945 B
name := "Leon"
version := "2.0"
organization := "ch.epfl.lara"
scalaVersion := "2.10.2"
scalacOptions += "-deprecation"
scalacOptions += "-unchecked"
scalacOptions += "-feature"
javacOptions += "-Xlint:unchecked"
if(System.getProperty("sun.arch.data.model") == "64") {
unmanagedBase <<= baseDirectory { base => base / "unmanaged" / "64" }
} else {
unmanagedBase <<= baseDirectory { base => base / "unmanaged" / "32" }
}
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % "2.10.2",
"org.scalatest" % "scalatest_2.10" % "2.0.M5b" % "test" excludeAll(ExclusionRule(organization="org.scala-lang")),
"com.typesafe.akka" %% "akka-actor" % "2.2.0" excludeAll(ExclusionRule(organization="org.scala-lang"))
)
fork in run := true
fork in test := true
logBuffered in Test := false
testOptions in Test += Tests.Argument("-oD")