Skip to content

Commit

Permalink
Make the keypool dependency required (#956)
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz authored Dec 24, 2024
1 parent a22fc01 commit 18398e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ val commonSettings = Seq(
libraryDependencies ++= Seq(
Libraries.catsEffectKernel,
Libraries.redisClient,
Libraries.keyPool % Optional,
Libraries.catsEffect % Test,
Libraries.catsLaws % Test,
Libraries.catsTestKit % Test,
Expand Down Expand Up @@ -127,6 +126,9 @@ lazy val `redis4cats-log4cats` = project
lazy val `redis4cats-effects` = project
.in(file("modules/effects"))
.settings(commonSettings: _*)
.settings(
libraryDependencies += Libraries.keyPool
)
.settings(isMimaEnabled := true)
.settings(Test / parallelExecution := false)
.enablePlugins(AutomateHeaderPlugin)
Expand Down

0 comments on commit 18398e5

Please sign in to comment.