Important Maven Tips

-X Switch : Printing the Extra Logs while running a maven goal.


clean install -X 

-e Switch : Printing the Stack Trace while running a maven goal


clean install -e 

-D switch : Add different standard properties

  • Run goals Skipping Tests :
  • 
    clean install -DskipTests=true
    

References

Leave a comment