【发布时间】:2017-04-12 00:09:31
【问题描述】:
我为 Maven 创建了一个带有 pom.xml 的新 JavaFX 项目。现在我想将它导出到一个可运行的 JAR。目前,我在 IntelliJ IDEA 2017.1.1-2
如何做到这一点?
这是我当前的 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">
<groupId>org.drawpvp</groupId>
<artifactId>drawpvp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<modelVersion>4.0.0</modelVersion>
<name>DrawPVP</name>
<description>Competitive drawing game.</description>
<properties>
<!-- Change the nd4j.backend property to nd4j-cuda-7.5-platform or nd4j-cuda-8.0-platform to use CUDA GPUs -->
<nd4j.backend>nd4j-native-platform</nd4j.backend>
<java.version>1.8</java.version>
<nd4j.version>0.8.0</nd4j.version>
<dl4j.version>0.8.0</dl4j.version>
<datavec.version>0.8.0</datavec.version>
<arbiter.version>0.8.0</arbiter.version>
<rl4j.version>0.8.0</rl4j.version>
</properties>
<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>nexus-releases</id>
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.nd4j</groupId>
<artifactId>nd4j-native-platform</artifactId>
<version>${nd4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- ND4J backend. You need one in every DL4J project. Normally define artifactId as either "nd4j-native-platform" or "nd4j-cuda-7.5-platform" -->
<dependency>
<groupId>org.nd4j</groupId>
<artifactId>${nd4j.backend}</artifactId>
</dependency>
<!-- Core DL4J functionality -->
<dependency>
<groupId>org.deeplearning4j</groupId>
<artifactId>deeplearning4j-core</artifactId>
<version>${dl4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.13</version>
</dependency>
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.datavec</groupId>
<artifactId>datavec-api</artifactId>
<version>${datavec.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.zenjava</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>8.8.3</version>
<configuration>
<mainClass>gui.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
如何为此导出 JAR?
【问题讨论】:
-
假设你在
<artifactId>drawpvp</artifactId>下面添加<packaging>jar</packaging>并运行maven install -
在尝试运行它在
target文件夹中创建的 .jar 后返回错误no main manifest attribute。 -
@JadenWang 请看我的回答,如果您想使用 javafx-maven-plugin,它可能会对您有更多帮助
-
@FibreFoX 与使用插件相比,我当前的 pom.xml 有什么缺点?
-
使用
maven-assembly-plugin并不能解决问题,当使用javafx-maven-plugin时,除了“只创建一些可执行jar”之外,您还可以创建本机二进制文件和安装程序,并包括一些解决方法对于几个javapackager-bugs
标签: java maven intellij-idea javafx deeplearning4j