Maven configuration to run integration tests

Maven has to main plugins to run tests:

  • maven-surefire-plugin: It is designed to run unit tests, it will run tests inside classes with “Test” in their class name.
  • maven-failsafe-plugin: It is designed to run integration tests, it will run tests inside classes with “IT” in their class name.
Read More