forked from sstone/amqp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
24 lines (18 loc) · 905 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
name := "amqp-client"
organization := "com.github.sstone"
version := "1.5-SNAPSHOT"
scalaVersion := "2.11.7"
scalacOptions ++= Seq("-feature", "-language:postfixOps")
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies <<= scalaVersion { scala_version =>
val akkaVersion = "2.3.11"
Seq(
"com.rabbitmq" % "amqp-client" % "3.5.2",
"com.typesafe.akka" %% "akka-actor" % akkaVersion % "provided",
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"org.scalatest" %% "scalatest" % "2.2.5" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.2" % "test",
"junit" % "junit" % "4.12" % "test"
)
}