-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.sbt
43 lines (40 loc) · 1.2 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
def scalatest(modules: String*) = modules.map { m =>
"org.scalatest" %% s"scalatest$m" % "3.2.10" % Test
}
lazy val depsSetting = libraryDependencies ++= Seq(
"org.eclipse.paho" % "org.eclipse.paho.client.mqttv3" % "1.2.5",
"org.slf4j" % "slf4j-api" % "1.7.32",
scalaColCompat % Provided, // to use @nowarn & silencer
scalaColCompat % Test,
"ch.qos.logback" % "logback-classic" % "1.2.6" % Test,
) ++ akka("actor", "testkit" -> Test).value ++
scalatest("-flatspec", "-shouldmatchers", "-wordspec")
lazy val `paho-akka` = projectMatrix
.akkaAxis(akka25, Seq(scala211, scala212, scala213))
.akkaAxis(akka26, Seq(scala212, scala213, scala3))
.settings(depsSetting)
inThisBuild(
Seq(
versionScheme := Some("semver-spec"),
developers := List(
Developer(
"thanhbv",
"Bui Viet Thanh",
url("https://sandinh.com")
),
Developer(
"mramshaw",
"Martin Ramshaw",
url("https://github.com/mramshaw")
),
Developer(
"crawford42",
"Robert Crawford",
url("http://www.kloognome.com")
),
),
)
)