如何在maven中捆绑第三方jar?

时间:2017-11-25 10:54:02

标签: java maven jar

我想使用maven bundle插件将tibjms.jar和javax.jms-api-2.0.jar捆绑到一个捆绑包中。由于tibjms.jar不在maven repos中,我首先将它添加到我的本地仓库:

mvn install:install-file -Dfile=/home/riyafa/Documents/Workspace/Support/NNINSURANCESUB-17/tibco/libs/jms-2.0.jar -DgroupId=com.tibco -DartifactId=tibjms -Dversion=4.4.0 -Dpackaging=jar -DgeneratePom=false

然后我创建了以下pom文件并构建它:

<?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">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.riyafa</groupId>
    <artifactId>tibco</artifactId>
    <packaging>bundle</packaging>
    <version>1</version>

    <dependencies>
        <dependency>
            <groupId>com.tibco</groupId>
            <artifactId>tibjms</artifactId>
            <version>4.4.0</version>
            <type>jar</type>
        </dependency>

        <dependency>
            <groupId>javax.jms</groupId>
            <artifactId>javax.jms-api</artifactId>
            <version>2.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>3.3.0</version>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                        <Export-Package>
                            com.tibco.tibjms.*,
                            com.tibco.tibjms.naming.*,
                            com.tibco.tibjms.naming.tibjmsnaming.*,
                        </Export-Package>
                        <Import-Package>
                            *,
                            !javax.jms.*,
                        </Import-Package>

                        <Embed-Dependency>
                            javax.jms-api;scope=compile|runtime;inline=false;
                        </Embed-Dependency>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

构建成功,但我只在生成的jar中看到javax.jms-api-2.0.jar: enter image description here

我想捆绑两个罐子。当其中一个罐子是thirparty罐子时,我怎么能实现这一点?我也尝试将jar作为外部库添加到pom文件中,但无效。

1 个答案:

答案 0 :(得分:1)

您是不是忘了为EmbedDependency添加tibjms?您还可以嵌入所有编译和运行时依赖项:

<Embed-Dependency>*;scope=compile|runtime;inline=false</Embed-Dependency>

请注意,javax.jms-api已打包为捆绑包。如果tibco工件的唯一目的是捆绑tibjmsjms-api,则可以考虑完全跳过它,而是将tibjms打包为捆绑包。然后,您可以将tibjmsjms-api部署为单独的捆绑包。