DevOps / Maven Interview questions II
What is the difference between -DskipTests and -Dmaven.test.skip=true?
-DskipTests compiles the tests, but skips running them.
-Dmaven.test.skip=true skips compiling the tests and does not run them.
More Related questions...