Sonar Maven插件是如何协调测试的?

时间:2013-07-09 10:32:39

标签: maven testing sonarqube

是否可以配置在使用mvn声纳时调用surefire插件的方式:sonar post compile。

在我的maven项目中,我有多个测试执行,例如

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.12.3</version>
                <executions>
                    <execution>
                        <id>default-test</id>
                        <phase>test</phase>
                        <configuration>
                            <excludes>
                                <exclude>**/*IntegrationTest.java</exclude>
                            </excludes>
                            <parallel>methods</parallel>
                            <useUnlimitedThreads>true</useUnlimitedThreads>
                            <argLine>${jacoco.agent.argLine}</argLine>
                        </configuration>
                    </execution>
                    <execution>
                        <id>default-integration-test</id>
                        <phase>integration-test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                        <configuration>
                            <includes>
                                <include>**/*IntegrationTest.java</include>
                            </includes>
                            <parallel>classes</parallel>
                            <argLine>${jacoco.agent.argLineIntegration}</argLine>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

请注意,集成测试尤其需要一些预处理(例如,aspectj编译)。

有没有办法告诉声纳这样做?或者确实可以预先生成报告并告诉声纳使用它们?

1 个答案:

答案 0 :(得分:2)