我正在尝试构建一个可执行jar并收到错误Error: Could not find or load main class com.company.app.Main
。我已经重新启动了我的电脑并尝试了这个项目。我也尝试过使用<addClasspath>true</addClasspath>
而没有运气......
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.company.app.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
答案 0 :(得分:3)
$ tree executable-jar-with-dependencies/
executable-jar-with-dependencies/
|-- pom.xml
`-- src
`-- main
`-- java
`-- com
`-- stackexchange
`-- stackoverflow
`-- ExecutableJar.java
6 directories, 2 files
的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.stackoverflow</groupId>
<artifactId>question-19281476</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!--
I prefer to use the maven-shade-plugin because the final built artifact maintains the original name
instead of appending "jar-with-dependencies" to the built artifact. But the maven-assembly-plugin works fine too.
-->
<!--
<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>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.stackexchange.stackoverflow.ExecutableJar</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.stackexchange.stackoverflow.ExecutableJar</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
ExecutableJar.java:
package com.stackexchange.stackoverflow;
public class ExecutableJar {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
现在从命令行执行以下操作演示了这种方法:
$ mvn clean package
$ java -jar target/question-19281476-1.0-SNAPSHOT-jar-with-dependencies.jar
Hello World
答案 1 :(得分:0)
到目前为止,maven-shade-plugin是获取胖胖可执行jar的最简单的解决方案。