forked from lightbend/kafka-streams-scala
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
71 lines (51 loc) · 1.66 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
import Dependencies._
name := "kafka-streams-scala"
organization := "com.openshine"
scalaVersion := Versions.Scala_2_12_Version
crossScalaVersions := Versions.CrossScalaVersions
scalacOptions := Seq("-Xexperimental",
"-unchecked",
"-deprecation",
"-Ywarn-unused-import")
parallelExecution in Test := false
libraryDependencies ++= Seq(
kafkaStreams excludeAll (ExclusionRule("org.slf4j", "slf4j-log4j12"), ExclusionRule(
"org.apache.zookeeper",
"zookeeper"
)),
scalaLogging % "test",
logback % "test",
kafka % "test" excludeAll (ExclusionRule("org.slf4j", "slf4j-log4j12"), ExclusionRule(
"org.apache.zookeeper",
"zookeeper"
)),
curator % "test",
minitest % "test",
minitestLaws % "test",
algebird % "test",
chill % "test"
)
testFrameworks += new TestFramework("minitest.runner.Framework")
licenses := Seq(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")
)
developers := List(
Developer("ssaavedra",
"Santiago Saavedra",
"@ssaavedra",
url("https://github.com/ssaavedra"))
)
organizationName := "openshine"
organizationHomepage := Some(url("http://openshine.com/"))
homepage := scmInfo.value map (_.browseUrl)
scmInfo := Some(
ScmInfo(url("https://github.com/openshine/kafka-streams-scala"),
"git@github.com:openshine/kafka-streams-scala.git")
)
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
publishArtifact in Test := false
enablePlugins(GitVersioning)
git.baseVersion := "0.1.git"
git.useGitDescribe := true
bintrayOrganization := Some("openshine")
bintrayRepository := "maven"