将Camel CXF代理部署到Red Hat JBoss Fuse

时间:2014-01-30 08:29:29

标签: maven cxf apache-camel fuseesb jbossfuse

我已按照此CXF Proxy Example进行操作,并按照说明成功运行。

现在我想将CXF代理示例部署到JBoss-Fuse中作为OSGI Bundle。我正在遵循这条指令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)))

1 个答案:

答案 0 :(得分:0)

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

<version>2.10.0</version>

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