-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
96 lines (79 loc) · 3.84 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import com.typesafe.sbt.SbtScalariform
sonatypeProfileName := "com.github.vicpara"
organization := "com.github.vicpara"
name := "exploratory-data-analysis"
releaseVersionFile := file("version.sbt")
scalaVersion := "2.10.4"
crossScalaVersions := Seq("2.11.7", "2.10.4")
publishMavenStyle := true
publishTo <<= version { (v: String) =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("-SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishArtifact in Test := false
libraryDependencies ++= Seq(
"joda-time" % "joda-time" % "2.6" withSources() withJavadoc(),
"org.joda" % "joda-convert" % "1.2" withSources() withJavadoc(),
"org.apache.spark" % "spark-core_2.10" % "1.3.0-cdh5.4.4" withSources() withJavadoc(),
"org.apache.commons" % "commons-csv" % "1.2" withSources() withJavadoc(),
"com.github.scala-incubator.io" %% "scala-io-core" % "0.4.3" withSources() withJavadoc(),
"com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3" withSources() withJavadoc(),
"com.rockymadden.stringmetric" %% "stringmetric-core" % "0.27.3" withSources() withJavadoc(),
"org.scalaz" %% "scalaz-core" % "7.0.6" withSources() withJavadoc(),
"org.rogach" %% "scallop" % "0.9.5" withSources() withJavadoc(),
"org.scala-lang" % "scalap" % "2.10.4" withSources() withJavadoc(),
"org.scala-lang" % "scala-compiler" % "2.10.4" withSources() withJavadoc(),
"com.github.tototoshi" %% "scala-csv" % "1.2.2" withSources() withJavadoc(),
"org.specs2" %% "specs2-core" % "2.4.9-scalaz-7.0.6" % "test" withSources() withJavadoc(),
"org.specs2" %% "specs2-scalacheck" % "2.4.9-scalaz-7.0.6" % "test" withSources() withJavadoc(),
"io.spray" %% "spray-json" % "1.3.1" withSources() withJavadoc(),
"org.scalaj" %% "scalaj-http" % "1.1.5" withSources() withJavadoc(),
"io.continuum.bokeh" %% "bokeh" % "0.6" withSources() withJavadoc()
)
resolvers ++= Seq(
"mvnrepository" at "https://repository.cloudera.com/artifactory/cloudera-repos/",
"Maven Central" at "https://repo1.maven.org/maven2/",
"Sonatype OSS Releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2"
)
assemblyMergeStrategy in assembly := {
case el if el.contains("fasterxml.jackson.core") => MergeStrategy.first
case el if el.contains("guava") => MergeStrategy.first
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 // Changed deduplicate to first
}
case PathList(_*) => MergeStrategy.first // added this line
}
pomIncludeRepository := { _ => false }
pomExtra := (
<url>http://github.com/vicpara/exploratory-data-analysis</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:vicpara/exploratory-data-analysis.git</url>
<connection>scm:git:[email protected]:vicpara/exploratory-data-analysis.git</connection>
</scm>
<developers>
<developer>
<id>vicpara</id>
<name>Victor Paraschiv</name>
<url>http://github.com/vicpara</url>
</developer>
</developers>)
scalariformSettings