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.
Alternatively, you can use maven.test.skip.exec option.
maven.test.skip.exec
mvn -Dmaven.test.skip.exec=true
Maven will compile the tests without running them. I use this option in all my projects regularly.