-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
executable file
·23 lines (21 loc) · 961 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
import Dependencies._
enablePlugins(JavaServerAppPackaging)
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "trood",
scalaVersion := "2.11.8",
version := "0.1.0-SNAPSHOT"
)),
name := "crossover",
libraryDependencies += scalaTest % Test,
libraryDependencies += "io.druid" % "tranquility-core_2.11" % "0.8.2",
libraryDependencies += "com.metamx" % "java-util" % "0.27.9",
libraryDependencies += "com.typesafe" % "config" % "1.3.1",
libraryDependencies += "com.rabbitmq" % "amqp-client" % "4.2.0",
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.0.10",
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3",
libraryDependencies += "org.apache.hadoop" % "hadoop-hdfs" % "2.8.0",
libraryDependencies += "org.apache.hadoop" % "hadoop-common" % "2.8.0",
libraryDependencies += "com.github.scopt" %% "scopt" % "3.6.0"
)