Maven:更改“mvn test”命令的属性

时间:2013-07-04 10:24:18

标签: maven testing skip

我在互联网上找不到这个问题的答案,所以我在这里问。 我想在属性值上跳过某些插件执行:

<properties>
    <skipTests>true</skipTests>
</properties>
...

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>1</id>
            <phase>process-test-resources</phase>
            <goals>
                <goal>exec</goal>
            </goals>
            <configuration>
                <skip>${skipTests}</skip>
            </configuration>
        </execution>
        ...

我的目标是在调用

时将属性$ {skipTests}设置为TRUE值
mvn clean install

当我打电话

时它应该是假的
mvn test

我不想在下面命令(实际上有效,但很难看):

mvn test -DskipTests=false

应该怎么做?

0 个答案:

没有答案