如何使用'bnd-maven-plugin'在我的OSGi捆绑jar中添加所有第三方jar(可解析)?

Posted

技术标签:

【中文标题】如何使用\'bnd-maven-plugin\'在我的OSGi捆绑jar中添加所有第三方jar(可解析)?【英文标题】:How to add all third party jars(resolvable) in my OSGi bundle jar using 'bnd-maven-plugin'?如何使用'bnd-maven-plugin'在我的OSGi捆绑jar中添加所有第三方jar(可解析)? 【发布时间】:2017-03-02 14:50:45 【问题描述】:

我正在使用“bnd-maven-plugin”开发 OSGi 应用程序 https://github.com/bndtools/bnd/tree/master/maven/bnd-maven-plugin

我的项目中有很多第三方 jar,通过 maven 引用。

当我使用“maven install”创建 jar 包时,我会得到它,当我在 felix 上部署它时,它不会解析其他依赖的第三方 jar。

它正在使用“maven-bundle-plugin” http://www.lucamasini.net/Home/osgi-with-felix/creating-osgi-bundles-of-your-maven-dependencies

带有“bnd-maven-plugin”的 POM 文件如下所示:

<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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>XYZ.Models</groupId>
    <artifactId>XYZ.Models</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <dependencies>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.4</version>
        </dependency>


        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.2.4</version>
        </dependency>

    </dependencies>

    <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>biz.aQute.bnd</groupId>
                <artifactId>bnd-maven-plugin</artifactId>
                <version>3.2.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>bnd-process</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>3.0.0</version>
                <configuration>
                    <archive>

                        <manifestFile>$project.build.outputDirectory/META-INF/MANIFEST.MF</manifestFile>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

下面是'ma​​ven-bundle-plugin'的工作POM

<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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>XYZ.Models</groupId>
    <artifactId>XYZ.Models</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <dependencies>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.4</version>
            <scope>provided</scope>
        </dependency>


        <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.2.4</version>
            <scope>provided</scope>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>create-osgi-bundles-from-dependencies</id>
            <build>
                <directory>$basedir/bundles</directory>
                <plugins>

                    <plugin>
                        <groupId>org.apache.felix</groupId>
                        <artifactId>maven-bundle-plugin</artifactId>
                        <version>2.0.1</version>
                        <extensions>true</extensions>
                        <executions>
                            <execution>
                                <id>wrap-my-dependency</id>
                                <goals>
                                    <goal>wrap</goal>
                                </goals>
                                <configuration>
                                    <wrapImportPackage>;</wrapImportPackage>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

【问题讨论】:

这里好像没有问题。 你好@NeilBartlett 谢谢。我在哪里可以发布与 'bnd-maven-plugin' 相关的查询,除了您对此插件的详细解释的文章之外,我找不到太多其他内容。 那你为什么不直接使用 maven-bundle-plugin 呢? @UmeshRajani 你可以在这里发布问题,但我在上面看不到实际问题。 嗨 Neil,实际上我们有一个项目模块,它有 20-30 个外部 jar 依赖项,当我执行“maven install”时,我会得到一个 myproject_osgi.jar,当我在 felix 上部署时,它应该解决所有第三方 jar 依赖项,但事实并非如此。那么有什么办法呢?我应该先在 felix 上部署所有第三方 jar 吗? (我们的高科技团队最终决定只使用“bnd-maven-plugin”) 【参考方案1】:

maven-bundle-plugin 中的魔法是由&lt;wrapImportPackage&gt;;&lt;/wrapImportPackage&gt; 完成的,它基本上会将您的所有依赖项作为资源添加到生成的 jar 文件中,并为您配置捆绑类路径。

bnd-maven-plugin 不使用 POM 中的指令。您必须在 bnd 文件中执行此操作。 This tutorial 专用于 Liferay 和 Gradle,但它会向您展示 -includeresource 指令的示例以及如何设置您的捆绑类路径。

【讨论】:

【参考方案2】:

如上所述,正确地提到了 bnd-maven-plugin。您也可以参考 bndtools 和 - wcm.io,但如果有帮助,只需添加几行即可。

 <configuration>
     <bnd><![CDATA[
         Include-Resource: <EXAMPLE-GROUP-ID>*.jar;<ANOTHER>.*;
     ]]></bnd>
</configuration>

您可以根据需要使用通配符。我刚刚添加了示例。

【讨论】:

以上是关于如何使用'bnd-maven-plugin'在我的OSGi捆绑jar中添加所有第三方jar(可解析)?的主要内容,如果未能解决你的问题,请参考以下文章

如何在我的表单处理程序中使用 PHP 来查看输入表单的图像文件是不是已经在我的文件系统中

如何知道我的程序是不是完全在我的 docker 中使用 compose 启动

如何使用 Alamofire 请求在我的 tableView 中显示我的数据

如何在我的数组上使用 forEach 循环在我的图表上绘制 x 和 y 变量(Chart.js)

我找不到如何在我的 xamarin 项目中使用 json 格式

如何在我的 GWT 应用程序中使用 OAuth?