-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
29 lines (21 loc) · 1.41 KB
/
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
27
28
29
name := "images-features-selection"
version := "0.1"
scalaVersion := "2.11.8"
val sparkVersion = "2.4.2"
resolvers += "Spark Packages Repo" at "http://dl.bintray.com/spark-packages/maven"
libraryDependencies += "org.apache.spark" %% "spark-core" % sparkVersion % "provided"
libraryDependencies += "org.apache.spark" %% "spark-sql" % sparkVersion % "provided"
libraryDependencies += "org.apache.spark" %% "spark-mllib" % sparkVersion % "provided"
libraryDependencies += "databricks" % "spark-deep-learning" % "1.5.0-spark2.4-s_2.11" % "provided"
libraryDependencies += "org.bytedeco" % "javacv-platform" % "1.4.2"
libraryDependencies += "com.github.tototoshi" %% "scala-csv" % "1.3.5"
libraryDependencies += "com.typesafe" % "config" % "1.3.3"
libraryDependencies += "sramirez" % "spark-infotheoretic-feature-selection" % "1.4.4" exclude("io.netty", "netty") exclude("commons-net", "commons-net") exclude("com.google.guava", "guava") exclude("org.apache.spark", "spark-mllib")
libraryDependencies += "sramirez" % "spark-RELIEFFC-fselection" % "0.5.0" exclude("org.apache.spark", "spark-mllib_2.11") exclude("org.apache.spark", "spark-core_2.11")
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.5"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % "test"
test in assembly := {}
assemblyMergeStrategy in assembly := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x => MergeStrategy.first
}