Skip to content

Instantly share code, notes, and snippets.

@jamie-allen
Created November 13, 2012 19:06
Show Gist options
  • Save jamie-allen/4067714 to your computer and use it in GitHub Desktop.
Save jamie-allen/4067714 to your computer and use it in GitHub Desktop.
Console build.sbt
scalaVersion := "2.9.2"
name := "Console Playground"
scalacOptions ++= Seq("-unchecked", "-deprecation", "-optimize")
resolvers ++= Seq("akka-snapshots" at "http://repo.akka.io/snapshots",
"akka-releases" at "http://repo.akka.io/releases",
"Atmos Repo" at "http://repo.typesafe.com/typesafe/atmos-releases",
"Cloudera Repo" at "https://repository.cloudera.com/content/groups/public",
"OpenCastProject Repo" at "http://repository.opencastproject.org/nexus/content/repositories/terracotta",
"JBoss Repo" at "https://repository.jboss.org/nexus/content/repositories/thirdparty-releases",
"releases" at "http://oss.sonatype.org/content/repositories/releases")
credentials += Credentials(Path.userHome / "atmos.credentials")
libraryDependencies ++= Seq(
"com.typesafe.atmos" % "atmos-akka-actor" % "2.0.3",
"org.fusesource" % "sigar" % "1.6.4",
"com.typesafe.akka" % "akka-testkit" % "2.0.3" % "test",
"org.scalatest" % "scalatest_2.9.2" % "1.8",
"junit" % "junit" % "4.7" % "test"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment