Created
May 31, 2017 05:45
-
-
Save enif-lee/bce4762d8b273dfe5b34f66e6e8851c4 to your computer and use it in GitHub Desktop.
build.sbt for "Programming Scala" book
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := "programming-scala" | |
version := "1.0" | |
scalaVersion := "2.11.7" | |
libraryDependencies ++= Seq( | |
"org.scala-lang" % "scala-swing" % "2.11+", | |
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.3", | |
"com.typesafe.akka" %% "akka-actor" % "2.4.1", | |
"org.scalaz.stream" %% "scalaz-stream" % "0.8.5", | |
"org.scala-lang" % "scala-reflect" % scalaVersion.value, | |
"org.specs2" %% "specs2-core" % "3.8.9" % "test", | |
"org.scalactic" %% "scalactic" % "2.2.6", | |
"org.scalatest" %% "scalatest" % "2.2.6" % "test", | |
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test", | |
"junit" % "junit" % "4.12" % "test" | |
) | |
scalacOptions in Test ++= Seq("-Yrangepos") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment