Skip to content

Commit 5d19760

Browse files
committed
Final attempt to fix conflicting cross-version suffixes 2.13 vs 3 (test-scoped)
1 parent 9fd3703 commit 5d19760

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ def extraTestDependencies(scalaVersion: String) =
3232

3333
case Some((3, _)) =>
3434
Seq(
35-
// "org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2", // % Test
36-
"com.typesafe.akka" %% "akka-actor-testkit-typed" % "2.6.20" % Test exclude ("org.scala-lang.modules", "scala-java8-compat")
35+
// because of conflicting cross-version suffixes 2.13 vs 3 - scala-java8-compat, etc
36+
"com.typesafe.akka" % "akka-actor-testkit-typed_2.13" % "2.6.20" % Test
3737
)
3838

3939
case _ =>

0 commit comments

Comments
 (0)