I was trying to build hive-0.13.
When using -Dmaven.test.skip=true
, it will not build the test jars but it will check test dependency.
When using -DskipTests
, it will not build the test jars and also not check test dependency.
What's the difference between -DskipTests
and -Dmaven.test.skip=true
?
Maven docs:
-DskipTests
compiles the tests, but skips running them-Dmaven.test.skip=true
skips compiling the tests and does not run themAlso this one might be important
There is a third, related option described here: https://stackoverflow.com/a/21933970/3169948
So the complete set of test options for Maven would be: