aboutsummaryrefslogtreecommitdiff
path: root/buildfile
blob: aaec9dc1bf8ebe378572e81e27e5b883dcfac618 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
  package(:jar)
  test.using :scalatest, :fork => true
end