-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
26 lines (18 loc) · 814 Bytes
/
build.sbt
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
name := "pio-engine-textclassification"
organization := "io.prediction"
scalaVersion := "2.10.5"
organization := "io.prediction"
libraryDependencies ++= Seq(
//"io.prediction" %% "core" % pioVersion.value % "provided",
"io.prediction" %% "core" % "0.9.6",
//"org.apache.spark" %% "spark-core" % "1.3.0" % "provided",
//"org.apache.spark" %% "spark-mllib" % "1.3.0" % "provided",
//"org.apache.spark" %% "spark-core" % "2.0.0",
//"org.apache.spark" %% "spark-mllib" % "2.0.0",
"org.apache.spark" % "spark-core_2.10" % "1.4.1",
"org.apache.spark" % "spark-mllib_2.10" % "1.4.1",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"com.typesafe.akka" %% "akka-slf4j" % "2.3.15"
)
mainClass in Compile := Some("ServerApp")
enablePlugins(JavaAppPackaging)