forked from googlegenomics/spark-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
35 lines (26 loc) · 1.4 KB
/
build.sbt
File metadata and controls
35 lines (26 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name := "googlegenomics-spark-examples"
version := "1.0"
scalaVersion := "2.10.4"
val googleAPIVersion = "1.19.0"
val googleAPIGenomicsVersion = "v1beta2-rev3-1.19.0"
val sparkVersion = "1.1.1"
val genomicsUtilsVersion = "v1beta2-0.19"
val excludeMortbayJetty = ExclusionRule(organization = "org.mortbay.jetty", name = "servlet-api")
val excludeGuavaJdk5 = ExclusionRule(organization = "com.google.guava", name = "guava-jdk5")
libraryDependencies ++= Seq(
"com.google.api-client" % "google-api-client" % googleAPIVersion excludeAll(excludeGuavaJdk5),
"com.google.api-client" % "google-api-client-java6" % googleAPIVersion,
"com.google.apis" % "google-api-services-genomics" % googleAPIGenomicsVersion,
"com.google.oauth-client" % "google-oauth-client-java6" % googleAPIVersion,
"com.google.oauth-client" % "google-oauth-client-jetty" % googleAPIVersion excludeAll(excludeMortbayJetty),
"com.google.http-client" % "google-http-client" % googleAPIVersion,
"com.google.http-client" % "google-http-client-jackson2" % googleAPIVersion,
"com.google.cloud.genomics" % "google-genomics-utils" % genomicsUtilsVersion,
"org.apache.spark" %% "spark-core" % sparkVersion % "provided",
"org.apache.spark" %% "spark-mllib" % sparkVersion % "provided",
"org.rogach" %% "scallop" % "0.9.5",
"org.scalatest" %% "scalatest" % "2.2.1" % "test"
)
resolvers ++= Seq(
"Akka Repository" at "http://repo.akka.io/releases/"
)