Created
October 28, 2013 14:01
-
-
Save Lewuathe/7197299 to your computer and use it in GitHub Desktop.
SBTからSparkをinstall ref: http://qiita.com/Lewuathe/items/3dd58445835230a13cd1
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
| libraryDependencies ++= Seq( | |
| "org.apache.spark" %% "spark-core" % "0.8.0-incubating" | |
| ) | |
| resolvers ++= Seq ( | |
| "Akka Repo" at "http://repo.akka.io/repository" | |
| ) |
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
| 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