-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.sbt
59 lines (48 loc) · 1.93 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Your sbt build file. Guides on how to write one can be found at
// http://www.scala-sbt.org/0.13/docs/index.html
name := "xgboost4j-spark-scalability"
organization := "me.codingcat"
scalaVersion := "2.11.8"
val sparkVersion = "2.3.3"
resolvers += "GitHub Repo" at "https://raw.githubusercontent.com/CodingCat/xgboost/maven-repo/"
val commonDeps = Seq("org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.scalatest" % "scalatest_2.11" % "3.0.1",
"com.typesafe" % "config" % "1.3.1",
"org.scala-lang" % "scala-library" % s"$scalaVersion" % "provided",
"org.apache.spark" % "spark-sql_2.11" % s"$sparkVersion" % "provided",
"org.apache.spark" % "spark-mllib_2.11" % s"$sparkVersion" % "provided",
"net.java.dev.jets3t" % "jets3t" % "0.9.4")
libraryDependencies ++= {
if (!System.getProperty("build_upstream", "false").toBoolean) {
commonDeps :+ "ml.dmlc" % "xgboost4j-spark" % "0.90"
} else {
commonDeps
}
}
parallelExecution in Test := false
fork := true
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
assemblyMergeStrategy in assembly <<= (mergeStrategy in assembly) { (old) => {
case x if Assembly.isConfigFile(x) =>
MergeStrategy.concat
case PathList(ps@_*) if Assembly.isReadme(ps.last) || Assembly.isLicenseFile(ps.last) =>
MergeStrategy.rename
case PathList("META-INF", xs@_*) =>
(xs map {
_.toLowerCase
}) match {
case ("manifest.mf" :: Nil) | ("index.list" :: Nil) | ("dependencies" :: Nil) =>
MergeStrategy.discard
case ps@(x :: xs) if ps.last.endsWith(".sf") || ps.last.endsWith(".dsa") =>
MergeStrategy.discard
case "plexus" :: xs =>
MergeStrategy.discard
case "services" :: xs =>
MergeStrategy.filterDistinctLines
case ("spring.schemas" :: Nil) | ("spring.handlers" :: Nil) =>
MergeStrategy.filterDistinctLines
case _ => MergeStrategy.first
}
case _ => MergeStrategy.first
}
}