I am working on a Maven multi-modules project. I want to build a given module and skip the unit tests to speed the build process up.
I've tried the following:
mvn reactor:make -Dmake.folders=search -Dgoals=package,-DskipTests
mvn reactor:make -Dmake.folders=search -Dgoals=package -Dmaven.test.skip=True
However, this does not have an effect at all. Any clues?