Maven 不会运行我的项目: 未能执行目标 org.codehaus.mojo:exec-maven-plugin:1.2.1:exec

2022-09-02 21:28:09

我无法运行Maven Netbeans JavaFX示例:

Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) onproject mavenproject3:
  Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1]

  To see the full stack trace of the errors, re-run Maven with the -e
  switch. Re-run Maven using the -X switch to enable full debug logging.

我的 POM 看起来像这样:

    <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.huw.almexoffice.client</groupId>
    <artifactId>almex-office-client</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>Almex Office Client</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <mainClass>com.huw.almexoffice.client.MainApp</mainClass>
    </properties>

    <organization>
        <!-- Used as the 'Vendor' for JNLP generation -->
        <name>Your Organisation</name>
    </organization>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.6</version>
                <executions>
                    <execution>
                        <id>unpack-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>unpack-dependencies</goal>
                        </goals>
                        <configuration>
                            <excludeScope>system</excludeScope>
                            <excludeGroupIds>junit,org.mockito,org.hamcrest</excludeGroupIds>
                            <outputDirectory>${project.build.directory}/classes</outputDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>            
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <executions>
                    <execution>
                        <id>unpack-dependencies</id>
                        
                        <phase>package</phase>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                        <configuration>
                            <executable>${java.home}/../bin/javafxpackager</executable>
                            <arguments>
                                <argument>-createjar</argument>
                                <argument>-nocss2bin</argument>
                                <argument>-appclass</argument>
                                <argument>${mainClass}</argument>
                                <argument>-srcdir</argument>
                                <argument>${project.build.directory}/classes</argument>
                                <argument>-outdir</argument>
                                <argument>${project.build.directory}</argument>
                                <argument>-outfile</argument>
                                <argument>${project.build.finalName}.jar</argument>
                            </arguments>
                        </configuration>
                    </execution>
                </executions>  
            </plugin>
            
            
            
            <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>
                    <compilerArguments>
                        <bootclasspath>${sun.boot.class.path}${path.separator}${java.home}/lib/jfxrt.jar</bootclasspath>
                    </compilerArguments>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

有谁知道为什么会发生这种情况?

如果没有,有谁知道如何通过Netbeans让Maven使用-e或-X开关运行?我假设它是通过右键单击POM,然后运行目标,然后在那里的文本字段中输入一些东西。


答案 1
  1. 这个错误会任意出现,并造成相当多的麻烦,尽管我这边的代码是可靠的。

我做了以下工作:

  • 我在netbeans上关闭了它。
  • 然后通过单击“打开项目”打开项目,选择我的项目并打开项目
  • 只需在 netbeans 中点击运行按钮即可。

我不会构建或清理构建它。希望对您有所帮助。

  1. 我注意到发生这种情况的另一个原因。如果将主类移动到另一个包,则会出现相同的错误。在这种情况下,您:
    • 右键单击“项目>”属性>运行
    • 通过单击“浏览”并选择来正确设置“主类”。

答案 2

我遇到了同样的问题。当我尝试从IDE运行该项目时,它给了我同样的错误。但是当我尝试从命令提示符运行时,项目运行良好。因此,我突然想到,使程序从IDE运行的设置应该存在一些问题。

我通过更改一些项目设置解决了这个问题。我跟踪了错误,并来到了我的pom.xml文件中的以下部分。

            <execution>
                <id>default-cli</id>
                <goals>
                    <goal>exec</goal>                            
                </goals>
                <configuration>
                    <executable>${java.home}/bin/java</executable>
                    <commandlineArgs>${runfx.args}</commandlineArgs>
                </configuration>
            </execution>

我转到我的项目属性>操作类别>操作:运行项目:然后我设置运行项目操作的属性,如下所示:

runfx.args=-jar "${project.build.directory}/${project.build.finalName}.jar"

然后,我重新生成了项目,并且能够运行该项目。如您所见,IDE(在我的情况下是Netbeans)无法找到在项目属性中设置的“runfx.args”。


推荐