Since this plugin will not expose any new code, that library directive is unnecessary. Modify it to appear as follows:
<runtime>
<library name="yourproject.jar">
<export name="*"/>
<packages prefixes="your.package.name"/>
</library>
</runtime>
Change yourproject.jar to one of the jar files being wrapped.
If one jar file contains multiple packages the prefixes value should
be set to the parent package that contains all of the packages being exposed.
For example, if your jar file contains org.foo.utils and org.foo.ui, you
would set prefixes="org.foo".