-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
23 lines (19 loc) · 824 Bytes
/
build.sbt
File metadata and controls
23 lines (19 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name := "TensorFlowOnSpark"
version := "1.0"
scalaVersion := "2.11.4"
libraryDependencies ++= Seq(
"org.apache.commons" % "commons-math3" % "3.5",
"org.apache.commons" % "commons-lang3" % "3.4",
"org.apache.spark" %% "spark-core" % "1.5.2",
"org.apache.spark" %% "spark-sql" % "1.5.2",
"org.apache.spark" %% "spark-graphx" % "1.5.2",
"com.github.scopt" %% "scopt" % "3.2.0",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"com.fasterxml.jackson.core" % "jackson-core" % "2.8.3",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.8.3",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.8.3",
"org.slf4j" % "slf4j-api" % "1.7.12",
"org.slf4j" % "slf4j-log4j12" % "1.7.12",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"com.github.nscala-time" %% "nscala-time" % "2.2.0"
)