Skip to content

Commit

Permalink
refactor: the new module renamed to renku-redis-client
Browse files Browse the repository at this point in the history
  • Loading branch information
jachro committed Feb 20, 2024
1 parent 321cd57 commit c6874b6
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ lazy val root = project
httpClient,
events,
redisClient,
searchRedisClient,
renkuRedisClient,
solrClient,
searchQuery,
searchSolrClient,
Expand Down Expand Up @@ -145,12 +145,12 @@ lazy val redisClient = project
commons % "test->test"
)

lazy val searchRedisClient = project
.in(file("modules/search-redis-client"))
.withId("search-redis-client")
lazy val renkuRedisClient = project
.in(file("modules/renku-redis-client"))
.withId("renku-redis-client")
.settings(commonSettings)
.settings(
name := "search-redis-client",
name := "renku-redis-client",
libraryDependencies ++=
Dependencies.catsEffect ++
Dependencies.redis4Cats ++
Expand Down Expand Up @@ -248,7 +248,7 @@ lazy val configValues = project
.dependsOn(
commons % "compile->compile;test->test",
events % "compile->compile;test->test",
searchRedisClient % "compile->compile;test->test",
renkuRedisClient % "compile->compile;test->test",
searchSolrClient % "compile->compile;test->test"
)

Expand Down Expand Up @@ -277,7 +277,7 @@ lazy val searchProvision = project
.dependsOn(
commons % "compile->compile;test->test",
events % "compile->compile;test->test",
searchRedisClient % "compile->compile;test->test",
renkuRedisClient % "compile->compile;test->test",
searchSolrClient % "compile->compile;test->test",
configValues % "compile->compile;test->test"
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# search-redis-client
# renku-redis-client

This module brings algebras for renku-search and Redis.

0 comments on commit c6874b6

Please sign in to comment.