forked from evolution-gaming/sequentially
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDependencies.scala
More file actions
39 lines (28 loc) · 1.17 KB
/
Copy pathDependencies.scala
File metadata and controls
39 lines (28 loc) · 1.17 KB
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
import sbt.*
object Dependencies {
val PrometheusTools = "com.evolutiongaming" %% "prometheus-tools" % "1.1.0"
val FutureHelper = "com.evolutiongaming" %% "future-helper" % "1.0.7"
val Scalatest = "org.scalatest" %% "scalatest" % "3.2.20"
object Akka {
private val Version = "2.6.21" // last OSS Akka version
val Stream = "com.typesafe.akka" %% "akka-stream" % Version
val Testkit = "com.typesafe.akka" %% "akka-testkit" % Version
}
object Pekko {
private val Version = "1.2.1"
val Stream = "org.apache.pekko" %% "pekko-stream" % Version
val Testkit = "org.apache.pekko" %% "pekko-testkit" % Version
}
object AkkaToPekkoAdapter {
private val Version = "1.0.4"
val Actor = "com.evolution" %% "akka-to-pekko-adapter-actor" % Version
val Stream = "com.evolution" %% "akka-to-pekko-adapter-stream" % Version
val Testkit = "com.evolution" %% "akka-to-pekko-adapter-test-kit" % Version
}
object CatsEffect {
private val Version = "3.7.0"
val effect = "org.typelevel" %% "cats-effect" % Version
val laws = "org.typelevel" %% "cats-effect-laws" % Version % Test
}
val catsCore = "org.typelevel" %% "cats-core" % "2.13.0"
}