-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
24 lines (19 loc) · 855 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
name := "StreamAutomaton"
version := "1.0"
scalaVersion := "2.10.4"
//libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test"
resolvers ++= Seq(
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
)
libraryDependencies ++= Seq(
// "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2",
// "ch.qos.logback" % "logback-classic" % "1.1.2",
"org.scalacheck" %% "scalacheck" % "1.11.4" % "test",
// "org.scalatest" % "scalatest_2.10" % "2.1.7" % "test",
"com.typesafe.akka" %% "akka-actor" % "2.3.3"
// "org.specs2" %% "specs2" % "2.3.12" % "test"
// "com.typesafe.akka" % "akka-actor_2.10" % "2.4-SNAPSHOT"
// "org.eintr.loglady" %% "loglady" % "1.1.0"
)
//scalacOptions in Test ++= Seq("-Yrangepos")