When I add the <parallel>classes</parallel> element to my surefire-plugin
configuration, JUnit reports aren't generated in target/surefire-reports.
Any idea how to fix?

I've modeled my setup after the following blog post, without the fine print
or Spring changes.

http://incodewetrustinc.blogspot.com/2010/01/run-your-junit-tests-concurrently-with.html

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.1</version>
            <scope>test</scope>
        </dependency>

            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.5</version>
                <executions>
                    <execution>
                        <id>default-test</id>
                        <configuration>
                            <parallel>classes</parallel>
                            <excludes>
                                <exclude>**/*SeleniumTest.java</exclude>
                            </excludes>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
-- 
View this message in context: 
http://old.nabble.com/Running-Tests-in-Parallel-doesn%27t-generate-surefire-reports-tp28270044p28270044.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to