Tagged Questions

20
votes
4answers
10k views

Maven 2.1.0 not passing on system properties to Java virtual machine

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 it ...
8
votes
2answers
3k views

How to use Maven Surefire plug-in with different groups for test and integration-test?

I want to use testng with the Surefire plug-in of Maven. The idea is to tag some tests with a group integrationTest and run the plug-in twice: for goal test excluding the group integrationTest and for ...
3
votes
1answer
3k views

Maven Eclipse unit test configuration

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 file as follows: <plugin> ...
2
votes
2answers
494 views

Maven 2 plugin, build + surfire

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 ...
0
votes
0answers
324 views

Unable to force newer version of surefire-plugin in Maven

I have a maven project and I am using the surefire-plugin to run my tests. Previously, I didn't force any version and maven picked up the 2.4.3 for me (why ??). I want to use 2.7.2 instead, which has ...