在maven-surefire-plugin中附加argLine param的值

时间:2017-09-29 13:05:33

标签: java maven maven-3 maven-surefire-plugin

我正在使用maven-surefire-plugin + Sonar,我想为maven-surefire-plugin的argLine参数添加一些额外的值。

所以我做到了:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.20.1</version>
            <configuration>
                <argLine>-DCRR.Webservice.isSimulated=true -D...</argLine>
            </configuration>
        </plugin>
        ...
    </plugins>
</build>

但在这种情况下,我覆盖argLine参数的原始值,Sonar不会生成jacoco.exec文件。

我可以在maven调试日志(-X)中看到argLine param的值没有覆盖它的值-javaagent:/opt/jenkins/.../myproject-SONAR/.repository/org/jacoco/org.jacoco.agent/0.7.4.201502262128/org.jacoco.agent-0.7.4.201502262128-runtime.jar=destfile=/opt/jenkins/.../myproject-SONAR/target/jacoco.exec

APPEND此参数原始值的正确方法是什么(保留原始+添加额外值)?

我使用的是Apache Maven 3.5.0,Java版本:1.8.0_131,供应商:Oracle Corporation。

1 个答案:

答案 0 :(得分:6)

官方文档称late replacement

如果您执行以下操作,则会覆盖之前由其他插件设置的argLine参数的值,因此请勿执行此操作:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
        <argLine>-D... -D...</argLine>
    </configuration>
</plugin>

保留现有值并添加配置的正确方法是使用@{...}语法:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <configuration>
        <argLine>@{argLine} -D... -D...</argLine>
    </configuration>
</plugin>

或者您可以在argLine文件中将property设置为pom.xml

<properties>
    <argLine>-DCRR.Webservice.isSimulated=true -D...</argLine>
</properties>

上述两种解决方案都能正常运作。