Merge pull request #1214 from eikek/feature/notifications

Add support for more generic notification
This commit is contained in:
mergify[bot]
2021-12-11 18:13:51 +00:00
committed by GitHub
175 changed files with 13041 additions and 599 deletions

View File

@ -231,10 +231,19 @@ object Dependencies {
"org.http4s" %% "http4s-blaze-server" % Http4sVersion
)
val circe = Seq(
"io.circe" %% "circe-generic" % CirceVersion,
val circeCore = Seq(
"io.circe" %% "circe-core" % CirceVersion
)
val circeParser = Seq(
"io.circe" %% "circe-parser" % CirceVersion
)
val circe =
circeCore ++ circeParser ++ Seq(
"io.circe" %% "circe-generic" % CirceVersion
)
val circeGenericExtra = Seq(
"io.circe" %% "circe-generic-extras" % CirceVersion
)
// https://github.com/Log4s/log4s;ASL 2.0
val loggingApi = Seq(
@ -285,6 +294,9 @@ object Dependencies {
val yamusca = Seq(
"com.github.eikek" %% "yamusca-core" % YamuscaVersion
)
val yamuscaCirce = Seq(
"com.github.eikek" %% "yamusca-circe" % YamuscaVersion
)
val munit = Seq(
"org.scalameta" %% "munit" % MUnitVersion,