在配置文件中运行插件的目标

时间:2016-01-24 19:56:49

标签: maven maven-3 pom.xml exec-maven-plugin maven-profiles

    <profile>
        <id>integration-tests</id>
        <activation>
            <property>
                <name>integrations</name>
                <value>true</value>
            </property>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>exec-maven-plugin</artifactId>
                    <version>1.4.0</version>
                    <executions>
                        <execution>
                            <id>script-chmod</id>
                            <phase>integration-test</phase>
                            <goals>
                                <goal>exec</goal>
                            </goals>
                            <configuration>
                                <executable>chmod</executable>
                                <arguments>
                                    <argument>+x</argument>
                                    <argument>integration-test-docker/integrations.sh</argument>
                                </arguments>
                            </configuration>
                        </execution>
                        <execution>
                            <id>script-exec</id>
                            <phase>integration-test</phase>
                            <goals>
                                <goal>exec</goal>
                            </goals>
                            <configuration>
                                <executable>integration-test-docker/integrations.sh</executable>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>

此配置文件中包含更多内容,但我只包含了我想要运行的内容。如何执行此特定插件的特定目标?

我试过了mvn exec:exec,但我得到了这个

  

[错误]无法执行目标   org.codehaus.mojo:exec-maven-plugin:1.3.2:exec(default-cli)on   project ando:目标的参数'可执行'   org.codehaus.mojo:exec-maven-plugin:1.3.2:exec丢失或无效    - &GT; [帮助1]

此外,错误输出表示版本1.3.2,但我正在使用1.4.0

1 个答案:

答案 0 :(得分:7)

在调用exec的{​​{1}}目标时出错,因为它的配置(您所指的那个)是profile的一部分,默认情况下它不是活动的您的执行exec-maven-plugin未激活。

如果您尝试通过其属性激活(根据配置)或显式(通过mvn exec:exec选项)激活配置文件,那么Maven将知道您提到的Exec Maven插件:

-P

mvn exec:exec -Pintegration-tests

因此,配置文件将处于活动状态,您的Exec Maven插件配置将成为构建的一部分。

但是,您正在配置插件的两次执行,并且没有全局配置,因此它也会再次失败。

mvn exec:exec -Dintegrations=true 子部分内外configuration部分的plugin元素之间有difference:out,默认情况下会应用于execution部分所有执行和命令行执行;在,它将应用于应用的特定执行(覆盖或与任何默认的一起合并,如果提供)。

如果要运行两个执行,则可以激活配置文件:

mvn clean verify -Pintegration-tests

mvn clean verify -Dintegrations=true

但是,它将执行配置文件的整个内容以及整个构建,直到指定的phase

如果您只想从命令行执行插件目标(exec),则需要指定默认配置(但只能指定一个),如下所示:

<profile>
    <id>integration-tests</id>
    <activation>
        <property>
            <name>integrations</name>
            <value>true</value>
        </property>
    </activation>
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.4.0</version>
                <configuration>
                    <!-- here your default configuration -->
                </configuration>
            </plugin>
        </plugins>
    </build>
</profile>

默认配置将应用于命令行执行。

或者,您也可以覆盖命令行中每个插件执行所使用的default execution iddefault-cli),并且您可以将其视为问题中提到的错误的一部分。因此,您可以仅针对该执行提供特定配置,而不是针对所有其他(如果有)执行(假设它们不提供自己的配置)。这是一个例子:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.4.0</version>
    <executions>
        <execution>
            <id>default-cli</id>
            <configuration>
                <!-- here your specific command line execution -->
            </configuration>
        </execution>
    </executions>
</plugin>

如果你想从命令行执行两次执行而只执行这些执行(因此,不是Maven阶段的一部分),你可以检查一下这个主题的this answer(简而言之:从Maven开始就可以了< strong> 3.3.1 ,否则会为早期版本提供建议。

因此,执行如下:

mvn org.codehaus.mojo:exec-maven-plugin:1.4.0:exec@script-chmod -Dintegrations=true

注意:

  • 我再次激活配置文件以将执行作为构建
  • 的一部分
  • 这一次,我没有传递插件aliasexec和所需的目标exec,但它的完整Maven GAV(groupId,artifactId,version)在公共中依赖的Maven模式(:分开),所以我们得到org.codehaus.mojo:exec-maven-plugin:1.4.0,然后传递目标,所以我们得到额外的:exec,然后使用上面提到的新功能和新的{{ 1}}运算符我传递了所需的执行ID(在POM中定义)。