This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-jdbc.git
The following commit(s) were added to refs/heads/main by this push:
new 0cf1d6d move scala-reflect to top of dependencies (#204)
0cf1d6d is described below
commit 0cf1d6df6abdb019031b78b313d4daa25fe23402
Author: PJ Fanning <[email protected]>
AuthorDate: Mon Jun 3 20:51:22 2024 +0100
move scala-reflect to top of dependencies (#204)
---
build.sbt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.sbt b/build.sbt
index db4b28a..f6c679d 100644
--- a/build.sbt
+++ b/build.sbt
@@ -36,13 +36,13 @@ lazy val core = project
.disablePlugins(SitePlugin)
.settings(
name := "pekko-persistence-jdbc",
- libraryDependencies ++= Dependencies.Libraries,
// Transitive dependency `scala-reflect` to avoid `NoClassDefFoundError`.
// See: https://github.com/slick/slick/issues/2933
libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value)
match {
case Some((2, _)) => Seq("org.scala-lang" % "scala-reflect" %
scalaVersion.value)
case _ => Nil
}),
+ libraryDependencies ++= Dependencies.Libraries,
mimaReportSignatureProblems := true,
mimaPreviousArtifacts := Set(
organization.value %% name.value % mimaCompareVersion))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]