几天来,我一直在尝试为我的muli-module-maven项目创建一个可执行jar文件,遗憾的是,我没有成功。
我知道已经有很多类似的问题,但是,即使按照答案,我也无法运行我制作的jar。
我使用的是maven程序集插件,因此我的jar包含了所有必需的依赖项,下面是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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>tam-authentication</artifactId>
<name>tam-authentication</name>
<description>authentication tam project</description>
<parent>
<groupId>com.netcomgroup.eu</groupId>
<artifactId>TAM</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<properties>
<java.version>11</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>"fully qualified class name"</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
...
dependencies from other modules
...
</dependencies>
</project>
此外,我还有另一个可能与jar创建相关的问题,其中包括一个公共库:
使用eclipse作为ide,每当我在multimodule项目上运行as>maven install时,我经常会遇到jar无法正确导入的情况,我需要删除并再次导入jar以正确完成java构建过程。有时我必须连续多次运行maven install才能使jar构建过程成功。
我不知道第二个问题是否相关,但我猜在多模块项目jar构建中有一些我看不到的错误。
1条答案
按热度按时间vsdwdz231#
首先,根据pom.xml,您没有在依赖项中提供完全限定的主类名。第二,如果您提供了主类名,那么在“mvn clean install”之后,它将创建2个jar—一个带有工件名,另一个带有“jar with dependencies”,您必须使用“jar with dependencies”。我也不认为你需要使用pluginmanagement标签作为额外的步骤。我刚刚修改了一点你的pom下面,请尝试这个和检查。
4.0.0