Is there a way in Maven to compile the tests without running them ? I want to use the IDE to run specific tests and not all of them.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

you can try to use parameter -DskipTests

link|improve this answer
In netbeans, that is what i was doing. I see the following mvn -Dmaven.test.skip=true -Dnetbeans.execution=true clean install then i see the following – user373201 Jan 22 '11 at 15:57
[compiler:testCompile] Not compiling test sources [surefire:test] Tests are skipped. Atleast using netbeans looks like if tests are skipped it does not compile test sources – user373201 Jan 22 '11 at 15:58
never mind, even though the logs say that, it still seems to compile test files. – user373201 Jan 22 '11 at 16:31
feedback

How about the test-compile lifecycle phase? It doesn't require any test skipping, because it occurs before the test phase. I.e.,

$ mvn test-compile

And done.

Introduction to the Build Lifecycle explains further.

link|improve this answer
This was exactly what I needed, thanks. I don't know about the original asker; but I was looking to compile the tests, then run them with a separate test runner. – Mike Miller Jun 1 '11 at 19:17
feedback

If you settings.xml file you can also use

<maven.test.skip>true</maven.test.skip>
link|improve this answer
You should never do that. If you need it, set it on the command line, but never permanently. – Sean Patrick Floyd Jan 25 '11 at 16:24
Never said you should or shouldn't do it. Just providing knowledge of the option. – menapole Jan 25 '11 at 19:08
1  
This causes maven not to compile the tests, either. – Mike Miller Jun 1 '11 at 19:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.