Skip to content

Commit

Permalink
Fix OSGi metadata (#1480)
Browse files Browse the repository at this point in the history
Set the correct version range for `Import-Package` declarations to
`org.apache.pekko` packages.

Fixes #1479.

Signed-off-by: Oliver Heger <[email protected]>
  • Loading branch information
oheger committed Sep 12, 2024
1 parent c9fdad1 commit 8b2f60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/OSGi.scala
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ object OSGi {
"!scala.util.parsing.*",
scalaImport(scalaVersion),
"*")
def pekkoImport(packageName: String = "org.apache.pekko.*") = versionedImport(packageName, "1.0", "1.1")
def pekkoImport(packageName: String = "org.apache.pekko.*") = versionedImport(packageName, "1.1", "1.2")
def configImport(packageName: String = "com.typesafe.config.*") = versionedImport(packageName, "1.4.0", "1.5.0")
def scalaImport(version: String) = {
val packageName = "scala.*"
Expand Down

0 comments on commit 8b2f60f

Please sign in to comment.