Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Provide the list of steps required to create a library bundle by wrapping the library jar using bnd (http://www.aqute.biz/Code/BndImage Removed).

Steps
  1. Use bnd to analyze the library jar (e.g., java -jar bnd-0.0.jar print path/to/FOO.jar)
  2. At the bottom of the bnd output, look for "Unresolved references to ..." which identify package dependencies. If found,
    a. Identifiy the library jars that provide the missing packages
    b. Recursively use this process on each dependency
  3. Create a directory that will be the project directory for the bundle (e.g., mkdir FOO-osgi)
  4. Copy the template pom.xml file to the bundle's project directory
  5. Edit the pom.xml file to tailor it for the library jar. Specifically,
    a. change artifactId
    b. verify description
    c. change version
    d. change FOO's library jar dependency (groupId, artifactId)
    e. add any other dependencies (from step 2b)
    f. change Export-Package
    g. change Private-Package or delete it if it's not needed
    h. All packages listed in step 1 should be in either Export-Package or Private-Package. Use the library's javadoc to identify the exported packages. The remaining packages should be private.
  6. Run "mvn package" to in the project directory to create the bundle
  7. Use bnd to verify the bundle's contents (e.g., java -jar bnd-0.0.jar print target/FOO-osgi-VERSION.jar)
  8. Run "mvn install" to install the bundle in the local repository

...

Resources

Bnd - Bundle Tool http://www.aqute.biz/Code/BndImage Removed

Bundle Plugin for Maven http://felix.apache.org/site/maven-bundle-plugin-bnd.htmlImage Removed