forked from yahoo/CMAK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (31 loc) · 1.43 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
/**
* Copyright 2015 Yahoo Inc. Licensed under the Apache License, Version 2.0
* See accompanying LICENSE file.
*/
name := """kafka-manager"""
version := "1.0-SNAPSHOT"
scalaVersion := "2.11.5"
scalacOptions ++= Seq("-Xlint","-Xfatal-warnings","-deprecation","-feature","-language:implicitConversions","-language:postfixOps")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.7",
"org.webjars" %% "webjars-play" % "2.3.0-2",
"org.webjars" % "bootstrap" % "3.3.1",
"org.webjars" % "jquery" % "2.1.1",
"org.webjars" % "backbonejs" % "1.1.2-2",
"org.webjars" % "underscorejs" % "1.7.0",
"org.webjars" % "dustjs-linkedin" % "2.4.0-1",
"org.apache.curator" % "curator-framework" % "2.7.0" exclude("log4j","log4j") force(),
"org.apache.curator" % "curator-recipes" % "2.7.0" exclude("log4j","log4j") force(),
"org.json4s" %% "json4s-jackson" % "3.2.11",
"org.json4s" %% "json4s-scalaz" % "3.2.11",
"org.slf4j" % "log4j-over-slf4j" % "1.7.7",
"com.adrianhurt" %% "play-bootstrap3" % "0.1.1",
"org.apache.kafka" %% "kafka" % "0.8.2-beta" % "test",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"org.apache.curator" % "curator-test" % "2.7.0" % "test" force()
)
net.virtualvoid.sbt.graph.Plugin.graphSettings
LessKeys.compress in Assets := true
pipelineStages := Seq(digest, gzip)
includeFilter in (Assets, LessKeys.less) := "*.less"
lazy val root = (project in file(".")).enablePlugins(PlayScala)