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 <oliver.heger@oliver-heger.de>
This commit is contained in:
parent
c9fdad1dd1
commit
8b2f60f494
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ object OSGi {
|
||||||
"!scala.util.parsing.*",
|
"!scala.util.parsing.*",
|
||||||
scalaImport(scalaVersion),
|
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 configImport(packageName: String = "com.typesafe.config.*") = versionedImport(packageName, "1.4.0", "1.5.0")
|
||||||
def scalaImport(version: String) = {
|
def scalaImport(version: String) = {
|
||||||
val packageName = "scala.*"
|
val packageName = "scala.*"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue