Skip to content

Instantly share code, notes, and snippets.

@yllan
Created April 10, 2013 13:07
Show Gist options
  • Select an option

  • Save yllan/5354465 to your computer and use it in GitHub Desktop.

Select an option

Save yllan/5354465 to your computer and use it in GitHub Desktop.
SBT setup for scalaz 7 with scala 2.10
scalaVersion := "2.10.1"
resolvers ++= Seq(
"Typesafe Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/",
"OSS" at "https://oss.sonatype.org/content/repositories/snapshots/")
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % "7.0-SNAPSHOT"
)
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