我正在使用servicemix(v4.5.3)并希望通过maven-bundle-plugin将我的应用程序(取决于数百个第三方库)部署为bundle。
下面是我的pom.xml
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<executions>
<execution>
<id>wrap-my-dependency</id>
<goals>
<goal>wrap</goal>
</goals>
<configuration>
<wrapImportPackage></wrapImportPackage>
<instructions>
<Include-Resource>{maven-resources}</Include-Resource>
<Bundle-ClassPath>.</Bundle-ClassPath>
<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Import-Package>*</Import-Package>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-Version>1.0.0</Bundle-Version>
<Bundle-Activator>com.bundle.example.Main</Bundle-Activator>
</instructions>
</configuration>
</execution>
</executions>
</plugin>
我跟着this创建了bundle,但是当我执行 mvn bundle:wrap 时,它将外部jar转换为bundle并放入我项目的target / classes文件夹中。
现在,我的查询应该是我必须复制所有bundle并将其放入servicemix安装目录的deploy文件夹中来运行我的应用程序。我已经遵循了这种方法,但在应用程序启动时我仍然遇到了一些错误。
清单文件:
Imported Packages
com.dhtmlx.connector from dhtmlxgridConnector (476)
com.google.gson,version=[1.7,2) -- Cannot be resolved
com.googlecode.ehcache.annotations,version=[1.1,2) -- Cannot be resolved
com.hazelcast.core,version=[2.6,3) from com.hazelcast (437)
com.tinkerpop.blueprints -- Cannot be resolved
com.tinkerpop.blueprints.impls.orient -- Cannot be resolved
com.tinkerpop.frames -- Cannot be resolved
这只是我的Manifest文件包的一小部分。在这里,一些包仍未解决,我认为启动我的包的问题。
第二个问题:在使用maven-bundle-plugin时,是否有更好的方法来处理所有第三方库。 等待一些有价值的建议。
答案 0 :(得分:0)
当我需要在Servicemix中将JAR转换为包并导入时,我使用:
./bin/servicemix
osgi:install -s wrap:file:////"jar_location Ex: /lib/ojdbc6-13.jar"
执行关闭命令,选择“是”选项。
现在,您的JAR将在ServiceMix中作为捆绑提供。