5

如何“放置”要从 pom.xml 执行的命令行参数。例如我有:

mvn clean install -Dmyparameter

我希望它从 pom.xml 而不是从命令行执行。

4

2 回答 2

4

您可以尝试使用 maven-exec-plugin:

mvn clean install exec:exec -Dexecutable=<absolute path to binary>

它还可以绑定到生命周期的某个阶段以在构建过程中执行(无需 exec:exec 显式调用),并在配置文件中定义并激活,如果属性存在可选运行:

   <profiles>
  <profile>
    <id>exec</id>
    <activation>
      <property>
        <name>executable</name>
      </property>
    </activation>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
          <execution>
            <id>exec</id>
            <goals>
              <goal>exec</goal>
            </goals>
            <phase>package</phase>
          </execution>
        </executions>
        <configuration>
          <executable>${executable}</executable>
        </configuration>
      </plugin>
    </plugins>
  </profile>
</profiles>
于 2012-07-13T09:46:15.943 回答
4

这取决于您需要使用 args 的哪个阶段。可以通过更改配置参数在插件上完成。

<pluginManagement>
    <plugin>
        ......
        ......
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
            <arguments>-Dmaven.test.skip=true -D[other arguments that u need to include]</arguments>
        </configuration>
        ......
        ......
</plugin> </pluginManagement>

同样的方式在肯定火插件你可以跳过测试等等!

于 2012-07-13T16:50:23.220 回答