forked from valentinsviridov/kafka-offset-monitor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
29 lines (25 loc) · 1005 Bytes
/
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 := "KafkaOffsetMonitor"
version := "0.5.3-SNAPSHOT"
scalaVersion := "2.11.8"
organization := "com.quantifind"
scalacOptions ++= Seq("-deprecation", "-unchecked", "-optimize", "-feature")
mainClass in Compile := Some("com.quantifind.kafka.offsetapp.OffsetGetterWeb")
libraryDependencies ++= Seq(
"log4j" % "log4j" % "1.2.17",
"net.databinder" %% "unfiltered-filter" % "0.8.4",
"net.databinder" %% "unfiltered-jetty" % "0.8.4",
"net.databinder" %% "unfiltered-json4s" % "0.8.4",
"com.quantifind" %% "sumac" % "0.3.0",
"org.apache.kafka" %% "kafka" % "0.10.2.0",
"com.twitter" %% "util-core" % "6.42.0",
"com.typesafe.slick" %% "slick" % "2.1.0",
"org.xerial" % "sqlite-jdbc" % "3.16.1",
"org.mockito" % "mockito-all" % "1.10.19" % "test",
"org.scalatest" %% "scalatest" % "2.2.6" % "test")
assemblyMergeStrategy in assembly := {
case "about.html" => MergeStrategy.discard
case x => {
val oldStrategy = (assemblyMergeStrategy in assembly).value
oldStrategy(x)
}
}