Skip to content

Commit

Permalink
use prefix x instead of z
Browse files Browse the repository at this point in the history
  • Loading branch information
simerplaha committed Nov 6, 2021
1 parent b639744 commit 9e37a14
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ lazy val SwayDB =
compression,
configs,
serializers,
`z-interop-boopickle`,
`z-interop-monix`,
`z-interop-zio`,
`z-interop-cats-effect`
`x-interop-boopickle`,
`x-interop-monix`,
`x-interop-zio`,
`x-interop-cats-effect`
)

lazy val testkit =
Expand Down Expand Up @@ -266,7 +266,7 @@ lazy val swaydb =
configs,
stream,
core % "test->test;compile->compile",
`z-interop-boopickle` % "test->test"
`x-interop-boopickle` % "test->test"
)

lazy val configs =
Expand Down Expand Up @@ -330,23 +330,23 @@ lazy val `swaydb-java` =
/**
* Support modules - Effect
*/
lazy val `z-interop-monix` =
lazy val `x-interop-monix` =
project
.settings(name := "monix")
.settings(commonSettings)
.settings(publishSettings)
.settings(libraryDependencies += "io.monix" %% "monix" % monixVersion)
.dependsOn(data)

lazy val `z-interop-zio` =
lazy val `x-interop-zio` =
project
.settings(name := "zio")
.settings(commonSettings)
.settings(publishSettings)
.settings(libraryDependencies += "dev.zio" %% "zio" % zioVersion)
.dependsOn(data)

lazy val `z-interop-cats-effect` =
lazy val `x-interop-cats-effect` =
project
.settings(name := "cats-effect")
.settings(commonSettings)
Expand All @@ -357,7 +357,7 @@ lazy val `z-interop-cats-effect` =
/**
* Support modules - Serialisers.
*/
lazy val `z-interop-boopickle` =
lazy val `x-interop-boopickle` =
project
.settings(name := "boopickle")
.settings(commonSettings)
Expand Down

0 comments on commit 9e37a14

Please sign in to comment.