forked from dkristian/akka-amqp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
45 lines (37 loc) · 1.23 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
organization := "com.rememberthemilk"
name := "akka-amqp"
version := "2.6-SNAPSHOT"
scalaVersion := "2.13.5"
val akkaVersion = "2.6.9"
val rabbitmqVersion = "5.9.0"
val mockitoVersion = "1.10.19"
val scalatestVersion = "3.2.2"
val scalatestPlusVersion = "1.0.0-M2"
val rabbitmqMockVersion = "1.1.1"
libraryDependencies ++= Seq(
"com.rabbitmq" % "amqp-client" % rabbitmqVersion,
"com.typesafe.akka" %% "akka-actor" % akkaVersion
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"org.mockito" % "mockito-all" % mockitoVersion % Test,
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.scalatestplus" %% "scalatestplus-mockito" % scalatestPlusVersion % Test,
"com.github.fridujo" % "rabbitmq-mock" % rabbitmqMockVersion % Test
)
resolvers ++= Seq(
"Sonatype OSS Releases".at("https://oss.sonatype.org/content/repositories/releases/")
)
scalacOptions ++= Seq(
"-Xfatal-warnings",
"-Xlint",
"-Ywarn-dead-code",
"-Ywarn-unused",
"-Ywarn-value-discard",
"-deprecation",
"-feature",
"-language:implicitConversions",
"-opt:l:inline",
"-opt:l:method",
"-unchecked"
)