Skip to content

Commit 8b2f60f

Browse files
authored
Fix OSGi metadata (#1480)
Set the correct version range for `Import-Package` declarations to `org.apache.pekko` packages. Fixes #1479. Signed-off-by: Oliver Heger <[email protected]>
1 parent c9fdad1 commit 8b2f60f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/OSGi.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ object OSGi {
141141
"!scala.util.parsing.*",
142142
scalaImport(scalaVersion),
143143
"*")
144-
def pekkoImport(packageName: String = "org.apache.pekko.*") = versionedImport(packageName, "1.0", "1.1")
144+
def pekkoImport(packageName: String = "org.apache.pekko.*") = versionedImport(packageName, "1.1", "1.2")
145145
def configImport(packageName: String = "com.typesafe.config.*") = versionedImport(packageName, "1.4.0", "1.5.0")
146146
def scalaImport(version: String) = {
147147
val packageName = "scala.*"

0 commit comments

Comments
 (0)