m

maven-bundle-plugin

provides a maven plugin that allows that builds the jar by embedding packages from the classpath (wildcarded). Plus a zillion other features. See http://www.aqute.biz/php/tools/bnd.php
文件下载
文件名 操作
maven-bundle-plugin-1.0.0.jar 下载
maven-bundle-plugin-1.0.0.pom 下载
Apache Maven
<dependency>
  <groupId>org.apache.felix</groupId>
  <artifactId>maven-bundle-plugin</artifactId>
  <version>1.0.0</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.apache.felix:maven-bundle-plugin:1.0.0'
Gradle Kotlin
implementation("org.apache.felix:maven-bundle-plugin:1.0.0")
Scala SBT
libraryDependencies += "org.apache.felix" % "maven-bundle-plugin" % "1.0.0"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.felix', module='maven-bundle-plugin', version='1.0.0')
)
Apache Ivy
<dependency org="org.apache.felix" name="maven-bundle-plugin" rev="1.0.0" />
Leiningen
[org.apache.felix/maven-bundle-plugin "1.0.0"]
Apache Buildr
'org.apache.felix:maven-bundle-plugin:jar:1.0.0'