尝试使用Alakai插件将Launch4j集成到Maven项目中

2022-09-04 07:14:36

我正在尝试将安装程序的生成集成为maven编译过程的一部分。

我找到了Alakai的Launch4j插件。我使用Maven创建了一个简单的Hello World应用程序。我尝试过使用Alakai提供的配置示例,但是当我编译我的项目时,我得到了:

未能在 Project Launch4j 上执行 goal org.bluestemsoftware.open.maven.plugin:launch4j-plugin:1.5.0.0:launch4j (launch4j): 未能构建可执行文件;请验证您的配置。应用程序 jar 不存在。-> [帮助 1]

不幸的是,Alakai的文档有限,我无法通过谷歌搜索找到太多东西。

  • 有谁知道Launch4j配置.xml应该在哪里设置?它是否在项目内?它是否在单独的目录中?
  • 我需要使用汇编插件吗?
  • 我已经在我的PC上安装了Launch4j。我是否需要在我的 pom.xml中指定安装目录?如果是,如何?
  • 有没有人有一个操作pom.xml示例/示例来分享?

谢谢。


答案 1
  1. 没有配置.xml,您需要在pom.xml文件中配置launch4j。
  2. 你可以使用maven-assembly-plugin,但我建议你使用maven-shade-plugin。
  3. 不需要指定launch4j安装,此插件可以100%工作。
  4. 确定。遵循我使用的shade和launch4j配置,它使用不同的主类生成两个exe,一个控制台和一个GUI:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>1.4</version>
    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>shade</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <shadedArtifactAttached>true</shadedArtifactAttached> <!-- Make the shaded artifact not the main one -->
        <shadedClassifierName>shaded</shadedClassifierName> <!-- set the suffix to the shaded jar -->
    </configuration>
</plugin>

<plugin>
    <groupId>org.bluestemsoftware.open.maven.plugin</groupId>
    <artifactId>launch4j-plugin</artifactId>
    <version>1.5.0.0</version>
    <executions>

        <!-- GUI exe -->
        <execution>
            <id>l4j-gui</id>
            <phase>package</phase>
            <goals>
                <goal>launch4j</goal>
            </goals>
            <configuration>
                <headerType>gui</headerType>
                <outfile>target/app-gui.exe</outfile>
                <jar>target/${artifactId}-${version}-shaded.jar</jar> <!-- 'shaded' is the value set on shadedClassifierName above -->
                <errTitle>App Err</errTitle>
                <classPath>
                    <mainClass>package.AppGUI</mainClass>
                </classPath>
                <icon>src/main/resources/icons/exeIcon.ico</icon>
                <jre>
                    <minVersion>1.5.0</minVersion>
                    <maxVersion>1.6.0</maxVersion>
                    <initialHeapSize>128</initialHeapSize>
                    <maxHeapSize>1024</maxHeapSize>
                </jre>
                <versionInfo>
                    <fileVersion>1.0.0.0</fileVersion>
                    <txtFileVersion>1.0.0.0</txtFileVersion>
                    <fileDescription>Desc</fileDescription>
                    <copyright>C</copyright>
                    <productVersion>1.0.0.0</productVersion>
                    <txtProductVersion>1.0.0.0</txtProductVersion>
                    <productName>Product</productName>
                    <internalName>Product</internalName>
                    <originalFilename>App.exe</originalFilename>
                </versionInfo>
            </configuration>
        </execution>

        <!-- Command-line exe -->
        <execution>
            <id>l4j-cli</id>
            <phase>package</phase>
            <goals>
                <goal>launch4j</goal>
            </goals>
            <configuration>
                <headerType>console</headerType>
                <outfile>target/app-cli.exe</outfile>
                <jar>target/${artifactId}-${version}-shaded.jar</jar> <!-- 'shaded' is the value set on shadedClassifierName above -->
                <errTitle>App Err</errTitle>
                <classPath>
                    <mainClass>package.AppCLI</mainClass>
                </classPath>
                <icon>src/main/resources/icons/exeIcon.ico</icon>
                <jre>
                    <minVersion>1.5.0</minVersion>
                    <maxVersion>1.6.0</maxVersion>
                    <initialHeapSize>128</initialHeapSize>
                    <maxHeapSize>1024</maxHeapSize>
                </jre>
            </configuration>
        </execution>
    </executions>
</plugin>

或者,您可以在 launch4j-plugin 上省略 “jar” 标记并删除 shade-plugin 的额外配置,但请注意,这将用 shaded jar(具有嵌入式依赖项)替换流的主 jar(没有嵌入依赖项),并且这个 jar 将安装在本地存储库上,或者在需要时在反应器中使用。


答案 2

有关如何定义着色插件的主类,请参阅 http://maven.apache.org/plugins/maven-shade-plugin/examples/executable-jar.html


推荐