简体   繁体   中英

Jboss fuse imported packages

When I try to deploy my route in Jboss fuse this probelm show up: 在此处输入图片说明

I had configured the felix plugin to imports this packages but without a result

 <plugin>
    <groupId>org.apache.felix</groupId>
    <artifactId>maven-bundle-plugin</artifactId>
    <version>${version.maven-bundle-plugin}</version>
    <extensions>true</extensions>
    <configuration>
      <instructions>
        <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
        <Bundle-Name>${project.name}</Bundle-Name>
        <Import-Package>org.jasypt.encryption.pbe, 
                         com.google.gson, 
                        javax.ws.rs, 
                        javax.xml.bind.annotation, 
                        com.fasterxml.jackson.jaxrs.json, 
                        com.fasterxml.jackson.jaxrs.xml, 
                        org.apache.camel, 
                         org.apache.camel.builder,
                         org.apache.camel.model,* 
        </Import-Package>
      </instructions>
    </configuration>
  </plugin>

Can I have a explanation for this problem? and a permanent solution ?

您还需要安装软件包,这些软件包可以导出那些软件包。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM