Created
April 10, 2013 13:07
-
-
Save yllan/5354465 to your computer and use it in GitHub Desktop.
SBT setup for scalaz 7 with scala 2.10
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.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