I want to read maven skipTests property. Does -DskipTests and -DskipIT implicitly call -Dmaven.test.skip ? 
            Asked
            
        
        
            Active
            
        
            Viewed 126 times
        
    0
            
            
        
        hemanik
        
- 965
 - 3
 - 14
 - 33
 
- 
                    Take a look at https://stackoverflow.com/questions/25639336/whats-the-difference-between-dskiptests-and-dmaven-test-skip-true – Michael Laffargue Aug 09 '17 at 06:37
 
1 Answers
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