Skip to content

Instantly share code, notes, and snippets.

@oreillyross
Created April 24, 2015 14:21
Show Gist options
  • Save oreillyross/416b7a11c2e2937fc484 to your computer and use it in GitHub Desktop.
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
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