有时在maven中添加bundle依赖包会报错,如下:
原因是在maven中添加bundle类型的依赖包需要添加bundle插件,如下
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
添加完插件后,就可以引入bundle类型的依赖包了,如下:
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
<version>3.10.6.Final</version>
<type>bundle</type>
</dependency>