0

I want to read maven skipTests property. Does -DskipTests and -DskipIT implicitly call -Dmaven.test.skip ?

hemanik
  • 965
  • 3
  • 14
  • 33

1 Answers1

2

-DskipTests compiles the tests, but skips running them while -Dmaven.test.skip = true skips compiling them all together (and skips running them as well)

nbirla
  • 600
  • 3
  • 14