を読んでいない私は、Mavenのexecを使用して私のプロジェクトを実行しようとしています。exec目標と私はこのスニペットを使用して設定しようとしました:のMaven Execのプラグインが設定
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<executable>java</executable>
<arguments>
<argument>-jar ${staging.dir}/project.jar</argument>
</arguments>
</configuration>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
私はmvn exec:exec
を実行すると、私が得ます出力:
------------------------------------------------------------------------
[ERROR]BUILD ERROR
------------------------------------------------------------------------
One or more required plugin parameters are invalid/missing for 'exec:exec'
[0] Inside the definition for plugin 'exec-maven-plugin' specify the following:
<configuration>
...
<executable>VALUE</executable>
</configuration>
-OR-
on the command line, specify: '-Dexec.executable=VALUE'
私は私が考えることができる<plugin>
everywayを再編成しようとしましたが、何も任意の違いはありませんか?このプロジェクトはPOMであり、ジャーではありません。
アイデア?
構成要素は、このプラグインの実行要素に属しません。 –