m

maven-bundle-plugin

Provides a maven plugin that supports creating an OSGi bundle from the contents of the compilation classpath along with its resources and dependencies. Plus a zillion other features. The plugin uses the Bnd tool (http://www.aqute.biz/Code/Bnd)
http://felix.apache.org/components/bundle-plugin/
文件下载
文件名 操作
maven-bundle-plugin-5.1.2.jar 下载
maven-bundle-plugin-5.1.2.pom 下载
maven-bundle-plugin-5.1.2-sources.jar 下载
Apache Maven
<dependency>
  <groupId>org.apache.felix</groupId>
  <artifactId>maven-bundle-plugin</artifactId>
  <version>5.1.2</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.apache.felix:maven-bundle-plugin:5.1.2'
Gradle Kotlin
implementation("org.apache.felix:maven-bundle-plugin:5.1.2")
Scala SBT
libraryDependencies += "org.apache.felix" % "maven-bundle-plugin" % "5.1.2"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.felix', module='maven-bundle-plugin', version='5.1.2')
)
Apache Ivy
<dependency org="org.apache.felix" name="maven-bundle-plugin" rev="5.1.2" />
Leiningen
[org.apache.felix/maven-bundle-plugin "5.1.2"]
Apache Buildr
'org.apache.felix:maven-bundle-plugin:jar:5.1.2'