forked from piotr-kalanski/data-quality-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
49 lines (38 loc) · 1.33 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
name := "data-quality-monitoring"
organization := "com.github.piotr-kalanski"
version := "0.3.8"
scalaVersion := "2.11.8"
licenses := Seq("Apache License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/piotr-kalanski/data-quality-monitoring"))
scmInfo := Some(
ScmInfo(
url("https://github.com/piotr-kalanski/data-quality-monitoring"),
"scm:git:ssh://github.com/piotr-kalanski/data-quality-monitoring.git"
)
)
developers := List(
Developer(
id = "kalan",
name = "Piotr Kalanski",
email = "[email protected]",
url = url("https://github.com/piotr-kalanski")
)
)
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-sql" % "2.1.1",
"com.github.piotr-kalanski" %% "es-client" % "0.2.1",
"com.typesafe" % "config" % "1.3.0",
"com.github.piotr-kalanski" %% "class2sql" % "0.1.6",
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"junit" % "junit" % "4.10" % "test",
"com.h2database" % "h2" % "1.4.195" % "test"
)
coverageExcludedPackages := "com.datawizards.dqm.examples.*"
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}