0

我是新手。我使用过 ant 并且知道如何将第三方 jar 与我的 jar 捆绑在一起,以便它们在运行时可用。我正在编写一个依赖于 Apache tika 库的应用程序。我正在使用依赖项来包含 Apache Tika jar。我的 jar 成功生成。我的 pom.xml 文件是

<groupId>com.nayan.parsers</groupId>
<artifactId>nayantikaparser</artifactId>
<version>0.0.1-1-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
    <dependency>
        <groupId>org.hamcrest</groupId>
        <artifactId>hamcrest-all</artifactId>
        <version>1.3</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.11</version>
        <scope>test</scope>
    </dependency>

    <dependency>
        <groupId>org.apache.tika</groupId>
        <artifactId>tika-app</artifactId>
        <version>0.7</version>
    </dependency>

</dependencies>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>org.apache.tika</groupId>
                                    <artifactId>tika-app</artifactId>
                                    <version>0.7</version>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

在运行时,由于 Tika 并非在所有系统上都可用,因此我想将 Tika jar 中的类捆绑到我的输出 jar 中。但我不知道该怎么做。我曾经用以下方式做到这一点

     <zip destfile="dist/${jar.name}-${build.version}.jar">         
    <!-- Include the temporary jar -->
    <zipgroupfileset file="dist/temp.jar" />

    <zipgroupfileset file="lib/tika-app-1.3.jar"/>          
</zip>

如何使用 maven 做同样的事情。

4

2 回答 2

0

查看Maven 程序集插件。具体来说,jar-with-dependecies案例。这将确保所有依赖项都在 jar 中。

如果您想要更好的控制,请查看Maven shade plugin。看到这个案例

于 2013-06-27T07:36:48.130 回答
0

更新为时已晚,但我能够达到预期的结果。我为maven使用了shade插件

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <version>2.1</version>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                    <configuration>
                        <artifactSet>
                            <excludes>
                                <exclude>org.testng</exclude>
                                <exclude>log4j</exclude>
                            </excludes>
                        </artifactSet>                          
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
于 2014-05-14T12:09:08.490 回答