0
在早期版本中,我可以执行类似features:addURl file:///path/to/features.xml
的操作,但现在此命令不受支持。从feature.xml上传所有bundle的另一种方法是什么?Apache Karaf 4.x,如何使用控制台添加包与feauture.xml文件?
编辑
我在做什么错在这里?
我有插件,在我的POM文件生成在我的本地仓库我的feature.xml文件
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>features-maven-plugin</artifactId>
<version>2.4.4</version>
<executions>
<execution>
<id>generate-features-xml</id>
<phase>generate-resources</phase>
<goals>
<goal>generate-features-xml</goal>
</goals>
</execution>
</executions>
</plugin>
命令和错误
谢谢您的回答,请你看看我原来的问题? –
我在这里发现了一个类似的问题: http://mail-archives.apache.org/mod_mbox/karaf-issues/201602.mbox/%[email protected]A%3E 可能是一个bug 。 –