我创建了一个简单的项目,只是为了启动计算器:
<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>test.maven.executable</groupId>
<artifactId>exe1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>TestExe</name>
<description>test execute with maven different excutables</description>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution><!-- Run our version calculation script -->
<id>Version Calculation</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>calc</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
但是当我跑步时:
mvn exec:exec
我收到错误:
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] 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'
但我有:
<configuration>
<executable>calc</executable>
</configuration>
VALUE必须是什么?我以为它是可执行文件的名称......
当我使用-Dexec.executable = VALUE之类的-Dexec.executable=calc
时 - 它可以正常工作。
另一个问题 -
在关于插件的文档中:
exec:exec execute programs and Java programs in a separate process.
但是当我运行-Dexec.executable = calc - maven等我关闭计算器时!哪里有单独的过程?
答案 0 :(得分:9)
配置正确,但Maven不使用它 - 因此令人困惑的错误消息:)
从Maven 2.2.0开始,直接从命令行调用的每个mojo将分配一个 default-cli 的执行ID,这将允许从POM通过以下方式配置执行:使用此默认执行ID。
要在运行mvn exec:exec
时申请您的申请,您需要将执行ID更改为default-cli
:
...
<executions>
<execution><!-- Run our version calculation script -->
<id>default-cli</id>
...
如果您希望能够使用mvn exec:exec
作为构建和的一部分来运行插件,则可以将<configuration>
移到<execution>
之外块。
答案 1 :(得分:8)
因为您将<configuration>
放在绑定到某个阶段的特定<execution>
内,所以该配置设置仅在执行该特定绑定执行时适用。对于通用mvn exec:exec
,它不受任何阶段的约束,因此只使用插件的通用配置部分。因此,这应该工作:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution><!-- Run our version calculation script -->
<id>Version Calculation</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>calc</executable>
</configuration>
</plugin>
但是,如果您调用包含generate-sources
阶段的生命周期(例如,mvn test
,mvn install
,{您编写的版本应该可以正常工作{1}})并且实际上更适合那里,因为它允许相同插件的其他生命周期绑定而不受干扰。