Skip to content

Instantly share code, notes, and snippets.

@arturaz
Created January 7, 2013 13:53
Show Gist options
  • Save arturaz/4475153 to your computer and use it in GitHub Desktop.
Save arturaz/4475153 to your computer and use it in GitHub Desktop.
scalaVersion := "2.10.0",
//scalaVersion in Test := "2.10.0",
scalaBinaryVersion := "2.10",
scalacOptions := Seq("-deprecation", "-unchecked", "-feature"),
resolvers := Seq(
// For scala-io & Akka dependencies.
"Typesafe" at "http://repo.typesafe.com/typesafe/releases/"
),
libraryDependencies := Seq(
// Java libraries
"net.sf.opencsv" % "opencsv" % "2.0",
"org.joda" % "joda-convert" % "1.2",
"joda-time" % "joda-time" % "2.1",
"org.apache.commons" % "commons-math3" % "3.0",
"org.apache.commons" % "commons-lang3" % "3.1",
// We're using hand-built 2.21-SNAPSHOT for now.
// "com.esotericsoftware.kryo" % "kryo" % "2.20",
// Java testing libraries
"org.mockito" % "mockito-core" % "1.9.0" % S.test,
// Scala libraries
"com.github.scala-incubator.io" % "scala-io-core_2.10" % V.ScalaIo,
"com.github.scala-incubator.io" % "scala-io-file_2.10" % V.ScalaIo,
"com.typesafe.akka" % "akka-actor_2.10" % V.Akka,
"com.typesafe.akka" % "akka-remote_2.10" % V.Akka,
"com.typesafe.akka" % "akka-kernel_2.10" % V.Akka,
// Scala testing libraries
"org.scalatest" % "scalatest_2.10.0-M7" % "2.0.M4-2.10.0-M7-B1" % S.test,
"com.typesafe.akka" % "akka-testkit_2.10" % V.Akka % S.test
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment