在JBoss Fuse 6.0上安装hawtio 1.4.27给出错误

时间:2014-10-28 23:03:46

标签: maven osgi apache-camel jbossfuse hawtio

我正在尝试在JBoss Fuse 6.0上安装最新的hawtio 1.4.27版本,但它似乎在这样做时会出错。

由于这是服务器机器,我创建了一个脱机存储库,并在pom文件中为脱机存储库添加了以下条目

<descriptor>mvn:io.hawt/hawtio-karaf/1.4.27/xml/features</descriptor>

<feature>hawtio</feature>

之后我在fuse console

中执行了这些命令
features:addurl mvn:io.hawt/hawtio-karaf/1.4.27/xml/features
features:install hawtio

安装时会出现以下错误:

Error executing command: Could not start bundle mvn:io.hawt/hawtio-karaf-terminal/1.4.27/war in feature(s) hawtio-karaf-terminal-1.4.27: Uses constraint violation. Unable to resolve bundle revision io.hawt.hawtio-karaf-terminal [238.0] because it is exposed to package 'jline' from bundle revisions jline [239.0] and org.apache.karaf.shell.console [15.0] via two dependency chains.

Chain 1:
  io.hawt.hawtio-karaf-terminal [238.0]
    import: (&(osgi.wiring.package=jline)(version>=2.11.0)(!(version>=3.0.0)))
     |
    export: osgi.wiring.package=jline
  jline [239.0]

Chain 2:
  io.hawt.hawtio-karaf-terminal [238.0]
    import: (&(osgi.wiring.package=org.apache.karaf.shell.console.jline)(version>=2.2.0)(!(version>=4.0.0)))
     |
    export: osgi.wiring.package=org.apache.karaf.shell.console.jline; uses:=jline
    export: osgi.wiring.package=jline
  org.apache.karaf.shell.console [15.0]

我缺少什么?请帮忙。

注意:我尝试在JBoss Fuse 6.0上安装hawtio 1.4.1,它安装得很好并且运行成功

1 个答案:

答案 0 :(得分:2)

我正在运行错误的命令。 正如在hawtio网站上提到的,如果你在ServiceMix 4.5上,那么你应该安装hawtio-core而不是hawtio 以下命令将被执行。

features:addurl mvn:io.hawt/hawtio-karaf/1.4.27/xml/features
features:install hawtio-core

这是a link到hawtio网站。在“使用Fuse,Fabric8,Apache Karaf或Apache Servicemix”部分提供了注释。