Created
April 24, 2015 14:21
-
-
Save oreillyross/416b7a11c2e2937fc484 to your computer and use it in GitHub Desktop.
Here’s build.sbt to test Scalaz 7.1.0: All you have to do now is open the REPL using sbt 0.13.0: $ sbt console
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
scalaVersion := "2.11.2" | |
val scalazVersion = "7.1.0" | |
libraryDependencies ++= Seq( | |
"org.scalaz" %% "scalaz-core" % scalazVersion, | |
"org.scalaz" %% "scalaz-effect" % scalazVersion, | |
"org.scalaz" %% "scalaz-typelevel" % scalazVersion, | |
"org.scalaz" %% "scalaz-scalacheck-binding" % scalazVersion % "test" | |
) | |
scalacOptions += "-feature" | |
initialCommands in console := "import scalaz._, Scalaz._" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment