What is the difference between ‘mvn verify’ vs ‘mvn test’?
First of all, when you run a Maven goal, it will run any previous goal. The order of basic phases is: Validate Compile Test Package Verify Install Deploy If you run Test, Maven will execute validate, compile and test. Based on this, the first point is that verify includes test. Based on official documentation: TEST … Read more