【发布时间】:2017-04-26 03:56:46
【问题描述】:
我是 IntelliJ-maven-java 编程的新手,由于我的程序,我想为 Mac OS 制作 dmg 文件。
我的开发环境是 Ubuntu-IntelliJ-Java-Maven。在我搜索的过程中,有一些插件可以从 intelliJ 制作 dmg 文件,但实际上对我来说非常复杂。
你能告诉我这个过程的顺序吗? 提前致谢。
此外,当我从https://github.com/federkasten/appbundle-maven-plugin 运行mvn install 和appbundle-maven-plugin 时,以下消息来自命令。
如果我做了一些愚蠢的事情,你能告诉我哪一部分是尴尬的吗?
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.623 s
[INFO] Finished at: 2017-04-26T14:16:36+09:00
[INFO] Final Memory: 12M/240M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal sh.tak.appbundler:appbundle-maven-
plugin:1.2.0:bundle (default) on project qupath: Execution default of goal sh.tak.appbundler:appbundle-maven-plugin:1.2.0:bundle failed. NullPointerException -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1]
这是我的 Maven 插件代码。
<plugin>
<groupId>sh.tak.appbundler</groupId>
<artifactId>appbundle-maven-plugin</artifactId>
<version>1.2.0</version>
<configuration>
<mainClass>src.main.java.qupath.QuPath</mainClass>
<jrePath>/usr/lib/jvm/java-8-oracle/jre</jrePath>
<generateDiskImageFile>true</generateDiskImageFile>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
【问题讨论】:
标签: java macos maven intellij-idea dmg