DevOps / Maven Surefire Plugin Interview Questions
How can you skip tests only within a specific Maven profile?
Bind a profile that sets the skipTests (or maven.test.skip) property to true, then activate that profile explicitly with -P<profile>, or automatically via an <activation> block keyed on OS, a system property, or a file's presence.
More Related questions...