Why (and in favor of what) are maven-bundle-plugin's wrap/bundleall goals deprecated?

末鹿安然 提交于 2019-11-30 16:51:37

问题


http://svn.apache.org/repos/asf/felix/releases/maven-bundle-plugin-2.3.7/doc/site/wrap-mojo.html says bundle:wrap is deprecated, same with bundle:bundleall. I currently use wrap to create an OSGi bundle from a non-OSGi dependency, as described at http://www.lucamasini.net/Home/osgi-with-felix/creating-osgi-bundles-of-your-maven-dependencies. What should they be replaced by and what's the reason for the deprecation?


回答1:


The alternative is to just use the bundle:bundle goal, then in your pom.xml configure the plugin similar to the following:

<plugin>
   <groupId>org.apache.felix</groupId>
   <artifactId>maven-bundle-plugin</artifactId>
   <configuration>
      <instructions>
         <Embed-Dependency>*;scope=compile;inline=true</Embed-Dependency>
         <_exportcontents>*</_exportcontents>
      </instructions>
   </configuration>
 </plugin>

You can control what dependencies get embeded and exported by changing the wildcards "*", scope, etc. attributes.




回答2:


I've wondered the same question, found some clue here:

http://www.mail-archive.com/dev@felix.apache.org/msg22221.html

"Instead new features/goals will be added to solve common use-cases such as creating mega-bundles, etc."

I guess they're going to rework the current goals because the current codebase doesn't support all that they want to implement in the plugin.



来源:https://stackoverflow.com/questions/10103666/why-and-in-favor-of-what-are-maven-bundle-plugins-wrap-bundleall-goals-deprec

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!