bundle 文件 是osgi 的一种文档,maven默认不支持此扩展名,需要添加maven-bundle-plugin 插件使之支持
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.5</version>
<extensions>true</extensions>
</plugin>
本文介绍了如何在Maven项目中添加maven-bundle-plugin插件以支持Bundle文件的使用,详细步骤包括插件的groupId、artifactId和version设置。
bundle 文件 是osgi 的一种文档,maven默认不支持此扩展名,需要添加maven-bundle-plugin 插件使之支持
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.5</version>
<extensions>true</extensions>
</plugin>
1万+
3103

被折叠的 条评论
为什么被折叠?