Skip to content

Commit 93303f4

Browse files
authored
Merge pull request #136 from softwaremill/akka-scala-3-support
Added scala3 support for akka
2 parents 0e051d9 + 97fbba6 commit 93303f4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,10 @@ lazy val akka = (projectMatrix in file("akka"))
137137
name := "akka"
138138
)
139139
.jvmPlatform(
140-
scalaVersions = List(scala2_12, scala2_13),
140+
scalaVersions = List(scala2_12, scala2_13) ++ scala3,
141141
settings = commonJvmSettings ++ Seq(
142-
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % "2.6.18" % "provided"
142+
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % "2.6.18" % "provided",
143+
mimaPreviousArtifacts := Set.empty
143144
)
144145
)
145146
.dependsOn(core)

0 commit comments

Comments
 (0)