我試圖執行使用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>
我可以想到但是沒有什麼區別?該項目是一個POM不是一個罐子。
任何想法?
配置元素不屬於此插件的執行元素內部。 – 2009-07-14 13:48:06