aboutsummaryrefslogtreecommitdiff
path: root/project/plugins/build.sbt
diff options
context:
space:
mode:
authorIsmael Juma <ismael@juma.me.uk>2011-07-15 03:38:25 +0100
committerIsmael Juma <ismael@juma.me.uk>2011-07-15 03:38:30 +0100
commitf686e3dacb02d42dd2bb9695a96cecd85786d7b5 (patch)
treeb78c3c6bb3f860d0717f1d29d6ba4776b40311c5 /project/plugins/build.sbt
parentcf8f5de61b74c05b53d6d6de12aaa580e9bba3c7 (diff)
downloadspark-f686e3dacb02d42dd2bb9695a96cecd85786d7b5.tar.gz
spark-f686e3dacb02d42dd2bb9695a96cecd85786d7b5.tar.bz2
spark-f686e3dacb02d42dd2bb9695a96cecd85786d7b5.zip
Initial work on converting build to SBT 0.10.1
Diffstat (limited to 'project/plugins/build.sbt')
-rw-r--r--project/plugins/build.sbt16
1 files changed, 16 insertions, 0 deletions
diff --git a/project/plugins/build.sbt b/project/plugins/build.sbt
new file mode 100644
index 0000000000..c13449ae03
--- /dev/null
+++ b/project/plugins/build.sbt
@@ -0,0 +1,16 @@
+resolvers += {
+ val typesafeRepoUrl = new java.net.URL("http://repo.typesafe.com/typesafe/releases")
+ val pattern = Patterns(false, "[organisation]/[module]/[sbtversion]/[revision]/[type]s/[module](-[classifier])-[revision].[ext]")
+ Resolver.url("Typesafe Repository", typesafeRepoUrl)(pattern)
+}
+
+resolvers += "sbt-idea-repo" at "http://mpeltonen.github.com/maven/"
+
+libraryDependencies ++= Seq(
+ "com.github.mpeltonen" %% "sbt-idea" % "0.10.0-SNAPSHOT"
+// FIXME Uncomment once version for SBT 0.10.1 is available "com.eed3si9n" %% "sbt-assembly" % "0.2"
+)
+
+libraryDependencies <<= (libraryDependencies, sbtVersion) { (deps, version) =>
+ deps :+ ("com.typesafe.sbteclipse" %% "sbteclipse" % "1.2" extra("sbtversion" -> version))
+} \ No newline at end of file