Tagged Questions

4
votes
1answer
1k views

How to use maven surefire plugin with different groups for test and integration-test?

I want to use testng with the surefire-plugin of maven. The idea is to tag some tests with a group integrationTest and run the plugin twice: for goal test excluding the group integrationTest and for …
2
votes
2answers
85 views

Why is Maven failing with a SurefireExecutionException: > Cannot set option parallel with value

Hi I am working through the tutorial here using windows XP and latest builds http://binil.wordpress.com/2006/12/08/automated-smoke-tests-with-selenium-cargo-testng-and-maven/ Could someone please …
2
votes
2answers
197 views

Maven 2 plugin, build + surfire

hi, If i define a plugin in the <build> tag and want to use this in my site command how do i do that? Do i have to define the plugin within <reporting> tag again? And how about the …
1
vote
2answers
220 views

How do I get my Maven Integration tests to run

Hello; I have a maven2 multi-module project and in each of my child modules I have JUnit tests that are named *Test.java and *Integration.java for unit tests and integration tests respectively. When …
1
vote
0answers
163 views

Maven Multi-Module builds not honoring failsafe-maven-plugin?

I recently discovered that Hudson was not the problem. In actuality it was Maven itself as the multi-module build was causing the build failure, not Hudson. I just hadn't noticed where the issue …
1
vote
2answers
219 views

maven surefire reporting plugin configuration

I have a multi-module maven project. The parent pom.xml is simply a way to reference common information for the 4 subprojects. I have quite a few JUnit tests that run and I also have the Parent …
1
vote
2answers
304 views

Is there a way to skip only a single test in maven ?

I would like to skip only a single test while launching mvn install. Is there a way to do that ?
1
vote
2answers
694 views

maven 2.1.0 not passing on system properties to java virtual machine

Hi We use the command line to pass on system properties to the java virtual machine when running our Hudson builds on a Linux box. It used to work quite well in 2.0.9 by since we upgraded to 2.1.0 …
0
votes
1answer
13 views

Maven Surefire reports show multiple class entries rather than a suite.

Hello, I've been asked to configure Maven's surefire report generator to include one entry for the test suite which in turn tests classes A,B and C but instead of seeing this: A B C MySuite I see …
0
votes
0answers
20 views

Derby gets stuck closing?

I've got unit tests (in maven) that use derby. At the end of the test run, there is a very long pause, with these log messages before the pause. INFO: Closing Hibernate SessionFactory Nov 16, 2009 …
0
votes
1answer
254 views

maven eclipse unit test configuration

Hi, I use Eclipse and for some of my unit tests, I need to set some JVM args for the test to work, -Djava.library.path in particular. I set it in my pom as follows: <plugin> …