• Intro Headers Instructions Macros Commands
  • Fork me on GitHub
    • Introduction
    • How to install bnd
    • Guided Tour
    • Guided Tour Workspace & Projects
    • Concepts
    • Best practices
    • Build
    • Project Setup
    • Generating JARs
    • Versioning
    • Baselining
    • Service Components
    • Metatype
    • Contracts
    • Bundle Annotations
    • Accessor Properties
    • SPI Annotations
    • Resolving Dependencies
    • Launching
    • Startlevels
    • Testing
    • Testing with Launchpad
    • Packaging Applications
    • JPMS Libraries
    • Wrapping Libraries to OSGi Bundles
    • Generating Documentation
    • Commands
    • For Developers
    • Tips for Windows users
    • Tools bound to bnd
    • Headers
    • Instruction Reference
    • Instruction Index
    • Macro Reference
    • Macro Index
    • Plugins
    • External Plugins
    • Settings
    • Errors
    • Warnings
    • Frequently Asked Questions


  • Maven

    The Maven plugin is described at [Felix maven plugin][http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html]. Defaults for Maven are:

    Bundle-SymbolicName: . Bundle-Name: project.getName(); Bundle-Version: Import-Package: * Export-Package: ..* (unless Private-package is set) Bundle-Description: project.getDescription() Bundle-License: project.getLicenses()) Bundle-Vendor: project.getOrganization(); Include-Resource: src/main/resources

    The repository with the latest plugin is:

    https://repo.maven.apache.org/maven2

    Group ID: org.apache.felix Artifact: maven-bundle-plugin

    Other details are found at the Felix site, the plugin is independently maintained by Felix.

    • GitHub