Bah!
I wanted to include a dependency for rome in my element WCB, so I added the following lines to my pom.xml:
<!-- Including rome which is not part of the WM 9.8 platform -->
<dependency>
<groupId>rome</groupId>
<artifactId>rome</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/rome-1.0.jar</systemPath>
</dependency>
Little did I know this was the start of All Evil(tm)... 
It seems rome is dependent on something else, which is dependent on something else etc. To cut things short, I've done a
C:\GX\WebManager9\settings.xml dependency:resolve
to figure out which dependencies were expected of me. Which gives a list of some forty libraries. 
I patiently added all of them, copied their properties and downloaded or copied the files, then filtered out the platform ones mentioned in WebManager's "springservlet.xml".
But still I get requests for fresh packages and my bundle remains "Installed" instead of "Active".
AAAAAAaaaaaaaaaaaargh!!!! 
My Felix Shell TUI says:
> start 73
org.osgi.framework.BundleException: Unresolved constraint in bundle 73: package; (package=org.omg.CosNaming)
Findjar.com says this is part of Java's "rt.jar".
How do I set a dependency to that and resolve the constraint?
And on a side note: this is really a rediculous amount of work for including one package. When will the hurting stop? Am I doing something wrong? Is there a shortcut?
Greetings,
Patrick