我已经为此花费了几个小时,但我无法完成它。对于 Maven/JavaFX 应用程序,我正在尝试获取可执行 jar。但是,每当我使用其依赖项构建它并执行它时,java -jar Kvn-jar-with-dependencies.jar
我都会遇到以下错误之一:
执行 Fat Jar 时:
- 错误:无法找到或加载主类 com.qohelet.kvn.MainApp
执行显然不包含依赖项的 Jar 时
- 没有主要清单属性,在 Kvn.jar 中
我使用 netbeans 8.2 进行开发(这是可以与 OpenJDK 1.8.0 一起运行的最后一个版本),我可以随时使用(或者更好,Netbeans 使用它)运行我的项目:
cd /home/qohelet/Projekte/Kvn; JAVA_HOME=/home/qohelet/jdk1.8.0_111 /home/qohelet/netbeans-8.2/java/maven/bin/mvn "-Dexec.args=-classpath %classpath com.qohelet.kvn.MainApp 'USER' 1 'Indonesia'" -Dexec.executable=/home/qohelet/jdk1.8.0_111/bin/java org.codehaus.mojo:exec-maven-plugin:1.2.1:exec
由于 mvn 更改为 ssh 导致获取依赖项出现问题,但我之前什至没有安装 maven,它仍然有效。(Maven 依赖项因 501 错误而失败),现在项目标头中的地址之一包含 https 而不是 http,但我认为这不是什么大问题。
目前 pom.xml 看起来像这样,这是https://maven.apache.org/plugins/maven-assembly-plugin/usage.html的编辑版本:
<?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>
<groupId>com.qohelet</groupId>
<artifactId>Kvn</artifactId>
<version>2.2</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<finalName>Kvn</finalName>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.qohelet.kvn.MainApp</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Various -->
</dependencies>
<name>Kvn</name>
</project>
这个版本给了我提到的错误。
我发现了一个不同的建议,其中 -Section 的设置就像显然工作了一段时间一样,但由于某些原因,它似乎没有被建议,因为 Netbeans 抱怨:
问题:项目问题:项目的主神器是通过maven-shade-plugin处理的,可解析方式:org.netbeans.modules.maven.problems.ProblemReporterImpl$MavenProblemResolver@a5534d unresolved
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.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.qohelet.kvn.MainApp</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
几个月前,该项目仍然可以使用以下 -Section 构建,但这主要是反复试验的结果,直到我得到工作结果:
<build>
<finalName>Kvn</finalName>
<plugins>
<!-- download source code in Eclipse, best practice -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
</configuration>
</plugin>
<!-- Set a compiler level -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
</plugin>
<!-- Maven Shade Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<!-- Run shade goal on package phase -->
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<!-- add Main-Class to manifest file -->
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.qohelet.kvn.MainApp</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
我不确定我是否正确解释了这一点,但这可能是由于 Java 的版本更改造成的吗?SO提供了很多答案,但我无法得到任何工作。
https://stackoverflow.com/a/589111/2516892让我得到完全相同的错误:
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.qohelet.kvn.MainApp </mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-my-jar-with-dependencies</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
与https://stackoverflow.com/a/4323501/2516892类似,以下构建部分不返回 Fat Jar 但相同的错误。
什么是最先进的?应该如何正确完成?
谢谢
编辑(1):Jar 的结构对我来说看起来不错。22Mb 似乎也是一个合理的大小。它是一个文件夹/com/qohelet/kvn/
,其中包含MainApp.class
使用https://stackoverflow.com/a/574650/2516892并编译
mvn clean compile assembly:single
奇怪地导致了一系列错误,比如
package javafx.beans.value does not exist
这很奇怪,因为安装了 JavaFX,我可以毫无问题地运行该程序。Netbeans 并没有太大的不同:
cd /home/qohelet/Projekte/Kvn; JAVA_HOME=/home/qohelet/jdk1.8.0_111 /home/qohelet/netbeans-8.2/java/maven/bin/mvn clean install
但这会产生一个只有 254Kb 的 jar,我假设它不包含依赖项。包括 make-assembly-part 只会产生相同的错误。
使用此处列出的第二个https://maven.apache.org/plugins/maven-shade-plugin/examples/executable-jar.html只是同样的错误:Error: Could not find or load main class com.qohelet.kvn.MainApp
,存档略小(19Mb),它再次包含文件夹结构:/com/qohelet/kvn/,其中包含 MainApp.class