m

maven-bundle-plugin

Provides a maven plugin which allows the creation of an OSGi bundle by embedding used packages as class or jars by inspecting the classpath used to compile the bundle. Plus a zillion other features. The plugin relies on the bnd tools, so to gather more information you can look at is documentation http://www.aqute.biz/php/tools/bnd.php
Files download
File Operation
maven-bundle-plugin-1.2.0.jar download
maven-bundle-plugin-1.2.0.pom download
Apache Maven
<dependency>
  <groupId>org.apache.felix</groupId>
  <artifactId>maven-bundle-plugin</artifactId>
  <version>1.2.0</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.apache.felix:maven-bundle-plugin:1.2.0'
Gradle Kotlin
implementation("org.apache.felix:maven-bundle-plugin:1.2.0")
Scala SBT
libraryDependencies += "org.apache.felix" % "maven-bundle-plugin" % "1.2.0"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.felix', module='maven-bundle-plugin', version='1.2.0')
)
Apache Ivy
<dependency org="org.apache.felix" name="maven-bundle-plugin" rev="1.2.0" />
Leiningen
[org.apache.felix/maven-bundle-plugin "1.2.0"]
Apache Buildr
'org.apache.felix:maven-bundle-plugin:jar:1.2.0'