-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
41 lines (35 loc) · 1.28 KB
/
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
34
35
36
37
38
39
40
41
name := "rehearsal"
version := "0.1"
scalaVersion := "2.11.8"
scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
"-feature",
"-Xfatal-warnings"
)
resolvers ++= Seq(
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/",
"Typesafe Repository" at "http://repo.akka.io/snapshots/",
"PLASMA" at "https://dl.bintray.com/plasma-umass/maven"
)
libraryDependencies ++= Seq(
"com.regblanc" %% "scala-smtlib" % "0.2",
"edu.umass.cs" %% "config" % "1.0.1",
"edu.umass.cs" %% "extras" % "1.3.0",
"edu.umass.cs" %% "smtlib" % "1.0.1",
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.0" % "test",
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4",
"com.assembla.scala-incubator" %% "graph-core" % "1.9.0",
"com.assembla.scala-incubator" %% "graph-dot" % "1.9.0",
"io.spray" %% "spray-json" % "1.3.2",
"com.github.scopt" %% "scopt" % "3.3.0",
"org.scalaj" %% "scalaj-http" % "1.1.6")
parallelExecution in Test := false
// Logging dependencies
libraryDependencies ++=
Seq("com.typesafe.scala-logging" %% "scala-logging" % "3.4.0",
"org.slf4j" % "slf4j-simple" % "1.7.12")
testOptions in Test += Tests.Argument("-oD")
assemblyJarName in assembly := "rehearsal.jar"
test in assembly := {}