Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In our "big build" (40+ modules), we have several modules that contain only tests.

When I give -DskiptTests to mvn, the tests are not executed.

But they are compiled, which costs up to a minute of build time.

How can I selectively turn off such modules when the option skipTests is set?

share|improve this question

2 Answers

up vote 2 down vote accepted

You'd have to organize your root pom such that the test modules are activated via a profile, and instead of using -Dmaven.test.skip to turn use -P!testProfile to deactivate them and hence skipping them.

Another thought is that you could just do:

<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
            <skip>${maven.test.skip}</skip>
        </configuration>
    </plugin>
</plugins>

I haven't actually tried that... it should in theory work. I seem to remember that the <skip> configuration is on all plugins.

share|improve this answer

Just to clarify the Gareth David point:

  • When you run mvn ... -DskipTests, only the execution of tests is skipped. This is the same behavior if you run mvn ... -Dtest=notest
  • When you run mvn ... -Dmaven.skip.test=true, then both test execution and compilation are skipped.

So the second command is enough, without any modification of your pom.xml file.

(source)

share|improve this answer
@Bastl What is the version of Maven you are using? – romaintaz Jun 10 '11 at 11:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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