-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibs.scala
More file actions
15 lines (13 loc) · 791 Bytes
/
Libs.scala
File metadata and controls
15 lines (13 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import sbt._
object Libs {
val `esw-http-template-wiring` = "com.github.tmtsoftware.esw" %% "esw-http-template-wiring" % "v1.0.0"
//testing
val `pekko-http-testkit` = "org.apache.pekko" %% "pekko-http-testkit" % "1.1.0"
val `pekko-actor-testkit-typed` = "org.apache.pekko" %% "pekko-actor-testkit-typed" % "1.1.3"
val `pekko-stream-testkit` = "org.apache.pekko" %% "pekko-stream-testkit" % "1.1.3"
val `embedded-keycloak` = "com.github.tmtsoftware.embedded-keycloak" %% "embedded-keycloak" % "0.7.4"
val `mockito` = "org.scalatestplus" %% "mockito-3-4" % "3.2.10.0"
val `junit4-interface` = "com.github.sbt" % "junit-interface" % "0.13.3"
val `testng-6-7` = "org.scalatestplus" %% "testng-6-7" % "3.2.10.0"
val `scalatest` = "org.scalatest" %% "scalatest" % "3.2.19"
}