aboutsummaryrefslogtreecommitdiff
path: root/buildfile
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2010-11-13 22:07:08 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2010-11-13 22:07:08 -0800
commit89fcd96702d6aa963192f0221922d2702820048f (patch)
tree99dcdc918425ec68170d02bf2dc8eb6ab2bd400b /buildfile
parentb7574201d56e0466b874a24b7ee6b09e29e0c2d8 (diff)
downloadspark-89fcd96702d6aa963192f0221922d2702820048f.tar.gz
spark-89fcd96702d6aa963192f0221922d2702820048f.tar.bz2
spark-89fcd96702d6aa963192f0221922d2702820048f.zip
Initial work to get Spark compiling with SBT 0.7.5 RC0
Diffstat (limited to 'buildfile')
-rw-r--r--buildfile23
1 files changed, 0 insertions, 23 deletions
diff --git a/buildfile b/buildfile
deleted file mode 100644
index 1fb9046e92..0000000000
--- a/buildfile
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'buildr/scala'
-
-# Version number for this release
-VERSION_NUMBER = "0.0.0"
-# Group identifier for your projects
-GROUP = "spark"
-COPYRIGHT = ""
-
-# Specify Maven 2.0 remote repositories here, like this:
-repositories.remote << "http://www.ibiblio.org/maven2/"
-
-THIRD_PARTY_JARS = Dir["third_party/**/*.jar"]
-
-desc "The Spark project"
-define "spark" do
- project.version = VERSION_NUMBER
- project.group = GROUP
- manifest["Implementation-Vendor"] = COPYRIGHT
- compile.with THIRD_PARTY_JARS
- compile.using :scalac
- package(:jar)
- test.using :scalatest, :fork => true
-end