forked from yahoo/maha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
70 lines (37 loc) · 1.86 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
// Copyright 2018, Oath Inc.
// Licensed under the terms of the Apache License 2.0. Please see LICENSE file in project root for terms.
name := "druid-manager"
version := "1.1"
scalaVersion := "2.12.6"
resolvers += "Y! BinTray Artifactory" at "http://yahoo.bintray.com/maven"
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/play"
resolvers += "Typesafe Simple Repository" at "http://repo.typesafe.com/typesafe/simple/maven-releases/"
libraryDependencies ++= Seq(
ws
)
libraryDependencies += jdbc
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.1.0"
libraryDependencies += "com.google.guava" % "guava" % "26.0-jre"
libraryDependencies += "org.webjars" % "jquery" % "3.3.1-1"
libraryDependencies +=filters
libraryDependencies += "log4j" % "log4j" % "1.2.17"
libraryDependencies += "com.yahoo.maha" % "maha-core" % "5.194"
libraryDependencies += "com.yahoo.maha" % "maha-druid-executor" % "5.185"
libraryDependencies += "org.bouncycastle" % "bcpkix-jdk15on" % "1.53"
libraryDependencies += "org.bouncycastle" % "bcprov-jdk15on" % "1.53"
libraryDependencies += "com.zaxxer" % "HikariCP" % "3.2.0"
libraryDependencies += "javax.servlet" % "servlet-api" % "2.5"
unmanagedBase <<= baseDirectory { base => base / "app" /"lib" }
lazy val root = (project in file(".")).enablePlugins(PlayScala, RpmPlugin, RpmDeployPlugin)
routesGenerator := InjectedRoutesGenerator
fork in run := false
maintainer := "Yahoo <[email protected]>"
packageSummary := "A tool for managing Apache Druid cluster"
packageDescription := "A tool for managing Apache Druid cluster"
rpmRelease := "1"
version in Rpm := sys.props.getOrElse("version", default = "1.0.0")
rpmVendor := "yahoo"
rpmUrl := Some("https://github.com/yahoo/maha/tree/master/druid-manager")
rpmLicense := Some("Apache v2")
rpmBrpJavaRepackJars := true
rpmGroup := Some("druid-manager")