DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| No Format |
|---|
org.foo.myproject.api org.foo.myproject.impl1 org.foo.myproject.impl2 ... |
If we also assume that we have a bundle activator in one of the implementation packages, then <plugins> section of the POM file would look like this:
| No Format |
|---|
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>org.foo.myproject.api</Export-Package>
<Private-Package>!org.foo.myproject.api,org.foo.myproject.*</Private-Package>
</instructions>
</configuration>
</plugin>
<plugins>
|
Features
| Anchor | ||||
|---|---|---|---|---|
|
...