0

我遵循了这个CXF 代理示例,它按照描述成功运行。

现在我想将 CXF 代理示例作为 OSGI Bundle 部署到 JBoss-Fuse 中。我正在按照Deploying the Apache Camel Route 的说明进行操作。但这让我出现了这个错误:

JBossFuse:admin@root> install -s mvn:org.apache.camel/camel-example-cxf-proxy/2.12.2

Bundle ID: 281
Error executing command: Error installing bundles:
        Unable to start bundle mvn:org.apache.camel/camel-example-cxf-proxy/2.12.2:
Unresolved constraint in bundle org.apache.camel.camel-example-cxf-proxy [281]: Unable
to resolve 281.0: missing requirement [281.0] osgi.wiring.package; 
(&(osgi.wiring.package=org.apache.camel.spring)(version>=2.12.0)(!(version>=2.13.0)))

JBossFuse:admin@root> 

我没有改变任何东西。只是照原样使用他们的例子。他们在 pom.xml 上有这个

  <parent>
    <groupId>org.apache.camel</groupId>
    <artifactId>examples</artifactId>
    <version>2.12.2</version>
  </parent>

我尝试通过将版本更改为2.9.0.fuse-70-097但错误相同(只是更改了版本号)

osgi.wiring.package; (&(osgi.wiring.package=org.apache.camel.spring)
(version>=2.9.0)(!(version>=2.10.0)))
4

1 回答 1

0

我通过替换它随机尝试了几个版本,pom.xml当我点击以下版本时它突然对我有用:

<version>2.10.0</version>

我不知道为什么它对我有用。但是,刚刚发现我很幸运!

于 2014-02-05T07:50:36.853 回答