Skip to content

Instantly share code, notes, and snippets.

@Lewuathe
Created October 28, 2013 14:01
Show Gist options
  • Select an option

  • Save Lewuathe/7197299 to your computer and use it in GitHub Desktop.

Select an option

Save Lewuathe/7197299 to your computer and use it in GitHub Desktop.
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "0.8.0-incubating"
)
resolvers ++= Seq (
"Akka Repo" at "http://repo.akka.io/repository"
)
import sbt._
import sbt.Keys._
object TestBuild extends Build {
lazy val test = Project(
id = "test",
base = file("."),
settings = Project.defaultSettings ++ Seq(
name := "test",
organization := "org.example",
version := "0.1-SNAPSHOT",
scalaVersion := "2.9.3"
// add other settings here
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment