我在 Karaf 中安装我的包时遇到了这个错误,我是 OSGi 和 Karaf 的新手,所以我可以在解释错误时使用一些帮助。
Error executing command: Could not start bundle mvn:com.myexample/foobar/0.1.0.SNAPSHOT
in feature(s) com.myexample.foobar-0.6.0.SNAPSHOT: Unresolved constraint in bundle
com.myexample.foobar [102]: Unable to resolve 102.0: missing requirement [102.0]
osgi.wiring.package; (&(osgi.wiring.package=org.apache.commons.fileupload)
(version>=1.3.0)(!(version>=2.0.0)))
这是在我的feature.xml
<bundle>mvn:commons-fileupload/commons-fileupload/1.3</bundle>
在我的 POM 中
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3</version>
</dependency>
Maven 存储库显示 1.3 的最新版本,但如果有,它可能不是 OSGi 版本,有人知道我在哪里可以找到它吗?我也试过wrap:mvn
了,也没有用。