无法在maven中生成具有依赖项的单个jar文件

时间:2015-09-01 14:31:43

标签: java xml eclipse maven jar

要求:生成一个带有依赖项的jar文件,并为jar文件提供一个cutom名称。

我的问题是我只需要生成一个带有依赖项的jar文件,我不需要默认生成的jar文件。当我清理安装'我得到两个名字的jar文件的结果: 的 FPMWebDocumentation-0.0.1.jar, FPMWebDocu.jar

我不希望生成 FPMWebDocumentation-0.0.1.jar 文件,我只需生成 FPMWebDocu.jar 。如果我删除了构建节点之外的groupId,artifactId版本,则会给出错误“groupId”'失踪,' artifactId'失踪等等。 现在,如果我删除groupId&从它的当前位置开始,并将其置于插件节点内部,它仍然提供与上述相同的缺失错误。

下面是我的pom.xml:

<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>com.fraunhofer.latexDocumentation</groupId>
<artifactId>FPMWebDocumentation</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>

<name>FPMWebDocumentation</name>
<url>http://maven.apache.org</url>

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

<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <executions>
                <execution>
                    <id>jar-with-dependencies</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                    <configuration>
                        <archive>
                            <manifest>
                                <mainClass>com.fraunhofer.latexDocumentation.MainClass</mainClass>
                            </manifest>
                        </archive>
                        <descriptorRefs>
                            <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                        <finalName>FPMWebDocu</finalName>
                        <appendAssemblyId>false</appendAssemblyId>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
    </dependency>
    <dependency>
        <groupId>org.jsoup</groupId>
        <artifactId>jsoup</artifactId>
        <version>1.8.3</version>
    </dependency>
    <dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>guava</artifactId>
        <version>18.0</version>
    </dependency>
</dependencies>
</project>

1 个答案:

答案 0 :(得分:0)

如果没有特别关注,请将FPMWebDocumentation-0.0.1.jar留在那里。该文件实际上是项目本身的主要工件。您的FPMWebDocu.jar实际上是正在生成的“额外”JAR。

请告诉我们您在那里拥有主要工件的问题,可以通过其他解决方案解决

如果我没记错的话,maven-shade-plugin的默认行为是使用带阴影的JAR作为项目的主要工件。看看here,了解如何通过阴影插件制作超级JAR

(但是,将 uber-jar 作为主要工件通常是一个坏主意,因为如果使用uber-jar作为依赖关系会破坏依赖关系管理机制)