summaryrefslogtreecommitdiffstats
path: root/sample-apps/blog-tutorial-shared/build.sbt
blob: a36a87205a4d313e08645222001fd9eeea5dea7b (plain) (blame)
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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
name := "blog-support"

version := "0.1"

scalaVersion := "2.11.8"
//scalaVersion := "2.10.5"

// unit test
libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.6" % "test"
//libraryDependencies += "org.scalatest" % "scalatest_2.10" % "2.0" % "test"

// spark libraries
libraryDependencies ++= Seq(
  "org.apache.spark" %% "spark-core" % "2.0.0",
  "org.apache.spark" %% "spark-mllib" % "2.0.0",
  "org.apache.spark" %% "spark-sql" % "2.0.0"
)

//libraryDependencies ++= Seq(
//  "org.apache.spark" %% "spark-core" % "1.6.2",
//  "org.apache.spark" %% "spark-mllib" % "1.6.2",
//  "org.apache.spark" %% "spark-sql" % "1.6.2"
//)