According to the documentation on the Maven Surefire Plugin, -Dmaven.test.skip
should skip both compilation and execution of the tests. By contrast, -DskipTests
just skips the test execution: the tests are still compiled.
According to the documentation on the Maven Surefire Plugin, -Dmaven.test.skip
should skip both compilation and execution of the tests. By contrast, -DskipTests
just skips the test execution: the tests are still compiled.