2

私はMavenプロジェクトを持っています。キュウリテストを実行するには、pomファイルに次の構成があります。

<plugin>
                <groupId>net.mynetwork</groupId>
                <artifactId>maven-cucumber-reporting</artifactId>
                <version>0.0.4</version>
                <executions>
                    <execution>
                        <id>execution</id>
                        <phase>site</phase>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                        <configuration>
                            <projectName>${project.name}</projectName>
                            <outputDirectory>${project.build.directory}/site/cucumber-html-reports</outputDirectory>
                            <cucumberOutput>${project.build.directory}/cucumber.json</cucumberOutput>
                            <enableFlashCharts>false</enableFlashCharts>
                        </configuration>
                    </execution>
                </executions>
            </plugin>


    <plugin>
                <groupId>org.codehaus.mojo</groupId>
                    <artifactId>exec-maven-plugin</artifactId>
                    <executions>
                        <execution>
                            <id>cucumber</id>
                            <phase>test</phase>
                            <configuration>
                                <executable>src/scripts/cucumber.sh</executable>
                                <arguments>
                                    <argument>${host}</argument>
                                    <argument>${port}</argument>
                                    <argument>${profile}</argument>
                                </arguments>
                            </configuration>
                            <goals>
                                <goal>exec</goal>
                            </goals>
                        </execution>
                    </executions>
        </plugin>

mvn コマンドを実行しているとき。

mvn クリーン インストール

次のエラーが表示されます。

    Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (cucumber) Misconfigured argument, value is null. Set the argument to an empty value if this is the required behaviour.

Failed to execute goal net.mynetwork:maven-cucumber-reporting:0.0.4

解決策を提案し、他に共有する必要がある場合はお知らせください。

4

1 に答える 1