Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
release-pager/project/Dependencies.scala
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
51 lines (41 sloc)
1.76 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sbt._ | |
object Dependencies { | |
val zio = "dev.zio" %% "zio" % Version.zio | |
val zioCats = "dev.zio" %% "zio-interop-cats" % Version.zioCats | |
val zioTest = "dev.zio" %% "zio-test" % Version.zio % "test" | |
val zioTestSbt = "dev.zio" %% "zio-test-sbt" % Version.zio % "test" | |
val zioMacro = "dev.zio" %% "zio-macros-core" % Version.zioMacro | |
val zioMacroTest = "dev.zio" %% "zio-macros-test" % Version.zioMacro | |
val fs2Core = "co.fs2" %% "fs2-core" % Version.fs2Core | |
val doobieCore = "org.tpolecat" %% "doobie-core" % Version.doobie | |
val doobieH2 = "org.tpolecat" %% "doobie-h2" % Version.doobie | |
val doobieHikari = "org.tpolecat" %% "doobie-hikari" % Version.doobie | |
val doobie = List(doobieCore, doobieH2, doobieHikari) | |
val flyway = "org.flywaydb" % "flyway-core" % Version.flyway | |
val h2 = "com.h2database" % "h2" % Version.h2 | |
val circeGeneric = "io.circe" %% "circe-generic" % Version.circe | |
val circeCore = "io.circe" %% "circe-core" % Version.circe | |
val circeParser = "io.circe" %% "circe-parser" % Version.circe | |
val circeExtras = "io.circe" %% "circe-generic-extras" % Version.circeExtras | |
val circe = List(circeGeneric, circeCore, circeParser, circeExtras) | |
val slf4j = "org.slf4j" % "slf4j-simple" % Version.slf4j | |
val canoe = "org.augustjune" %% "canoe" % Version.canoe | |
val pureconfig = "com.github.pureconfig" %% "pureconfig" % Version.pureconfig | |
} | |
object Version { | |
val zio = "1.0.0-RC17" | |
val zioCats = "2.0.0.0-RC10" | |
val zioMacro = "0.6.2" | |
val slf4j = "1.7.28" | |
val fs2Core = "2.2.1" | |
val kindProjector = "0.10.3" | |
val canoe = "0.4.0" | |
val http4s = "0.21.0-RC1" | |
val circe = "0.12.3" | |
val circeExtras = "0.12.2" | |
val doobie = "0.8.8" | |
val newType = "0.4.3" | |
val flyway = "6.2.0" | |
val h2 = "1.4.200" | |
val pureconfig = "0.12.2" | |
} |