You might not always want to execute all tests. Sometimes you only want to runa single unit test, or only integrations tests that start with Foo. Let’s lookat how to make this happen in Maven. Table of Contents Skip Unit or Integration Tests Execute a Single Unit or Integration TestClass Execute a Single Unit or Integration Test Within a TestClass Further Reading Skip Unit or Integration Tests Skip the execution of unit tests: $ mvn compile -DskipTests This will still compile the unit tests...