Apache camel Servicemix简单捆绑包缺少需求

Apache camel Servicemix简单捆绑包缺少需求,apache-camel,apache-servicemix,Apache Camel,Apache Servicemix,您好,我是servicemix新手,无法启动简单的自编程包 My pom.xml: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ma

您好,我是servicemix新手,无法启动简单的自编程包

My pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"                           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<!-- Generated by Apache ServiceMix Archetype -->

<modelVersion>4.0.0</modelVersion>

<groupId>de.rupp</groupId>
<artifactId>test</artifactId>
<packaging>bundle</packaging>
<version>1.0-SNAPSHOT</version>
<name>test</name>

<properties>
   <camel.version>3.0.0-M3</camel.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.apache.camel</groupId>
        <artifactId>camel-core</artifactId>
        <version>${camel.version}</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

<build>
    <defaultGoal>install</defaultGoal>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.0.2</version>
            <configuration>
                <source>1.5</source>
                <target>1.5</target>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.4.3</version>
            <configuration>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>2.3.6</version>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                    <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                    <Import-Package>*</Import-Package>
                    <Private-Package>de.rupp</Private-Package>
                </instructions>
            </configuration>
        </plugin>
    </plugins>
</build>
生成的MANIFEST.MF是

Manifest-Version: 1.0
Bnd-LastModified: 1560848195732
Build-Jdk: 1.8.0_181
Built-By: bla
Bundle-ManifestVersion: 2
Bundle-Name: test
Bundle-SymbolicName: test
Bundle-Version: 1.0.0.SNAPSHOT
Created-By: Apache Maven Bundle Plugin
Export-Package: de.rupp;uses:="org.apache.camel.builder,org.apache.camel
 .model";version="1.0.0.SNAPSHOT"
Import-Package: org.apache.camel.builder;version="[3.0,4)",org.apache.ca
 mel.model;version="[3.0,4)"
Tool: Bnd-1.50.0
当我将jar复制到deploy文件夹并使用bundle:list时 我看到它被安装了 225 |已安装| 80 | 1.0.0.快照|测试

但是我不能启动它

karaf@root>开始225

Error executing command: Error executing command on bundles:
        Error starting bundle 225: Unable to resolve test [225](R 225.14): missi
ng requirement [test [225](R 225.14)] osgi.wiring.package; (&(osgi.wiring.packag
e=org.apache.camel.builder)(version>=3.0.0)(!(version>=4.0.0))) Unresolved requi
rements: [[test [225](R 225.14)] osgi.wiring.package; (&(osgi.wiring.package=org
.apache.camel.builder)(version>=3.0.0)(!(version>=4.0.0)))]
任何帮助都将不胜感激。 有人知道编写camel bundle的好教程吗

谢谢


Hans

您应该使用ServiceMix正在使用的Camel版本(附带开箱即用)。ServiceMix不支持Camel 3


此外,我还想知道,由于ServiceMix不再那么活跃,建议只使用Apache Karaf或Camel的替代运行时(Spring Boot、Quarkus、Tomcat、通过Camel Main的独立Camel)。

用以下内容替换您的属性:

<properties>
   <camel.version>2.16.5</camel.version>
</properties>

2.16.5
更改为2.16.5使其可启动。非常感谢。我们的管理层认为servicemix很棒,但却懒得解释为什么。。。
Error executing command: Error executing command on bundles:
        Error starting bundle 225: Unable to resolve test [225](R 225.14): missi
ng requirement [test [225](R 225.14)] osgi.wiring.package; (&(osgi.wiring.packag
e=org.apache.camel.builder)(version>=3.0.0)(!(version>=4.0.0))) Unresolved requi
rements: [[test [225](R 225.14)] osgi.wiring.package; (&(osgi.wiring.package=org
.apache.camel.builder)(version>=3.0.0)(!(version>=4.0.0)))]
<properties>
   <camel.version>2.16.5</camel.version>
</properties>