forked from epfl-lara/leon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
47 lines (29 loc) · 1.16 KB
/
build.sbt
File metadata and controls
47 lines (29 loc) · 1.16 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name := "Leon"
version := "2.3"
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")),
"junit" % "junit" % "4.8" % "test",
"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")
javaOptions in test += "-Xss32M"
parallelExecution in Test := false
sourcesInBase in Compile := false
// do not skip parent Eclipse project definition
EclipseKeys.skipParents in ThisBuild := false