The Maven Plugins require at least Maven 3.1.0. This is because bndlib uses SLF4J and Maven 3.1.0 or later provides the SLF4J API.
This README, and the READMEs in the individual Bnd Maven Plugin folders,
represent the capabilities and features of the Bnd Maven Plugins in
the branch containing the READMEs. So for the master
branch, this will be
the latest development SNAPSHOT build.
See the appropriate Git tag for the README for the
Bnd Maven Plugin version you are using.
This project builds the various Maven plugins provided by the Bnd project, and defines common dependency information.
These plugins are built using Maven (unlike the rest of Bnd) because it is very hard to build a Maven plugin unless you use Maven to do it!
The core plugin, used to generate manifest and other metadata for projects that build an OSGi bundle.
A plugin used to generate an OSGi repository index from a set of Maven dependencies. The entries in the index will reference the location of the bundles in the remote repositories to which they have been deployed.
A plugin used to validate that a bundle correctly uses semantic versioning as described by the OSGi Alliance. This plugin will verify that the bundle and package versions of a module's output artifact are correct based on:
- The bundle and package versions declared by the previously released version of the module.
- Any changes that have been made to the packages exported by the bundle.
- Any internal changes within the bundle.
A plugin to export bndrun files.
A plugin to resolve bndrun files.
A plugin to run integration tests from bndrun files.
A plugin to run a bndrun file.
A plugin to generate and export reports of projects.
You must first run ./gradlew :build
to build the Bnd artifacts and install them in your local
maven repo. You can then run Maven to build the Bnd Maven plugins. You can run
./gradlew :maven:deploy
to build the Bnd Maven plugins with the deploy
goal which will deploy
the built Bnd Maven plugins into the releaserepo.
If you want to try the latest development SNAPSHOT build of the
Bnd Maven Plugins, you will need to adjust your pom to refer to the snapshot
repository and select the latest version of the plugins. For example, edit the
pom's pluginManagement
section, to configure the repository:
<pluginRepositories>
<pluginRepository>
<id>bnd-snapshots</id>
<url>https://bndtools.jfrog.io/bndtools/libs-snapshot/</url>
<layout>default</layout>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>