Skip to content

Commit

Permalink
fix: Workaround slick dependency issue #824 (#835)
Browse files Browse the repository at this point in the history
Direct dependency on scala-reflect sorts it until upstream is fixed
  • Loading branch information
johanandren committed May 8, 2024
1 parent 97b7924 commit 206d056
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ lazy val core = project
.settings(
name := "akka-persistence-jdbc",
libraryDependencies ++= Dependencies.Libraries,
// Workaround for https://github.com/slick/slick/issues/2933
libraryDependencies ++=
(if (scalaVersion.value.startsWith("2.13")) Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value)
else Nil),
mimaReportSignatureProblems := true,
mimaPreviousArtifacts := {
if (scalaVersion.value.startsWith("3")) {
Expand Down

0 comments on commit 206d056

Please sign in to comment.