Pom surefire configuration is causing failing tests to be missed
----------------------------------------------------------------

                 Key: TUSCANY-3580
                 URL: https://issues.apache.org/jira/browse/TUSCANY-3580
             Project: Tuscany
          Issue Type: Bug
          Components: Build System
    Affects Versions: Java-SCA-2.0-M5
         Environment: All
            Reporter: Simon Laws
             Fix For: Java-SCA-2.0-M5


Some failing tests are not being reported from Maven runs. The problem is 
related to the following stanza that appears in some poms. 


    <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.5</version>
                    <configuration>
                        <includes>
                            <include>**/*TestCase.java</include>
                        </includes>
                        <reportFormat>brief</reportFormat>
                        <useFile>true</useFile>
                        <forkMode>once</forkMode>
                        <argLine>-ea -Xmx256m</argLine>
                        <parallel>off</parallel>
                    </configuration>
                </plugin>
            </plugins>
    </build>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to