Is there a simple way to not build the test classes?
mvn clean install -Dmaven.test.skip=true
Walter
|
Is there a simple way to not build the test classes?
Walter |
|||||
|
|
According to the documentation on the Maven Surefire Plugin, your example should skip both compilation and execution of the tests. |
|||||||||||
|
|
Just to be explicitly clear:
So the behavior of the above 2 is opposite. Just wanted to point out that Also, depending on which version of Maven your using, there's also |
|||
|
|
|
Run a phase that doesn't include
|
|||
|
|
|
I'm not an expert at maven, but what I use in my current project is:
Depending on your use case using:
might work for you too. |
|||
|
|