apache / pekko

Build highly concurrent, distributed, and resilient message-driven applications using Java/Scala
https://pekko.apache.org/
Apache License 2.0
1.17k stars 140 forks source link

investigate pekko-osgi test artifact blueprint.xml #186

Closed pjfanning closed 1 year ago

pjfanning commented 1 year ago
<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
           xmlns:akka="http://akka.io/xmlns/blueprint/v1.0.0">

    <akka:actor-system name="BlueprintSystem" />

    <akka:actor-system name="BlueprintSystemWithConfig">
        <akka:config>
            some.config {
              key=value
            }
        </akka:config>
    </akka:actor-system>
</blueprint>

Can this just be modified to use pekko instead of akka?

spangaer commented 1 year ago

Now my xml tags are a bit rusty, but if you update the URL it seems fine https://stackoverflow.com/a/11602530/574370

Merely a means of namespacing XML tags not to collide with those of OSGi. (matter of updating the parsing code of course)

pjfanning commented 1 year ago

Sometimes the URI matters because it may relate to an XML schema - but changing the URI appears to break no tests.

pjfanning commented 1 year ago

https://github.com/apache/incubator-pekko/pull/201 was merged