Master Automation Testing with Maven: Tips and Tricks .

Table of contents
- What is Maven?
- π Essential Maven Commands for Test Automation Engineers (SDET)
- π Advanced Maven Commands for Test Engineers
- β‘ Running Tests in Different Ways
- π§ Maven Commands for Surefire and Failsafe Plugins (Test Execution & Reports)
- π Running Tests in Different Environments (Using Profiles)
- π Maven Commands for Continuous Integration (Jenkins)
- π οΈ Debugging Maven Issues
- π― Maven Lifecycle Phases (Build Stages)
- π₯ Conclusion

What is Maven?
Maven is a build automation tool primarily used for Java-based projects, including UI and API Automation Testing. It simplifies project management by handling dependencies, build processes, and project configurations.
For automation testing, Maven helps in:
Managing dependencies (like Selenium, TestNG, REST Assured).
Running test scripts using the command line.
Generating test reports.
Integrating with CI/CD tools like Jenkins.
π Essential Maven Commands for Test Automation Engineers (SDET)
Command | Usage |
mvn clean | Deletes the target directory (removes compiled files, old reports, logs) |
mvn compile | Compiles the source code of the project (only compiles, does not run tests) |
mvn test | Runs all unit tests & automation tests (TestNG/JUnit) |
mvn package | Compiles and packages the project into a JAR/WAR file |
mvn install | Installs the built package into the local repository (.m2 folder) |
mvn deploy | Deploys the packaged project to a remote repository (for team collaboration) |
mvn verify | Runs tests and verifies project integrity before deployment |
mvn validate | Ensures all necessary configurations and dependencies are available |
mvn site | Generates a website with project documentation and reports |
π Advanced Maven Commands for Test Engineers
Command | Usage |
mvn dependency:tree | Displays the dependency hierarchy (helps resolve conflicts) |
mvn dependency:analyze | Checks for unused and missing dependencies |
mvn dependency:copy-dependencies | Copies all dependencies to the target folder |
mvn help:describe -Dplugin=<plugin-name> | Displays details about a specific plugin |
mvn versions:display-dependency-updates | Shows available updates for project dependencies |
mvn versions:display-plugin-updates | Shows available updates for project plugins |
β‘ Running Tests in Different Ways
Command | Usage |
mvn test -Dtest=TestClassName | Runs a specific TestNG/JUnit class |
mvn test -Dtest=TestClass#methodName | Runs a specific test method |
mvn test -DsuiteXmlFile=TestSuite.xml | Runs TestNG suite from XML file |
mvn test -Dgroups="smoke" | Runs only tests belonging to the "smoke" test group |
mvn test -DincludeTags="regression" | Runs tests with JUnit 5 @Tag("regression") |
mvn test -DexcludedGroups="database" | Excludes tests belonging to "database" group |
π§ Maven Commands for Surefire and Failsafe Plugins (Test Execution & Reports)
Command | Usage |
mvn surefire-report:report | Generates a TestNG/JUnit report using Surefire plugin |
mvn surefire:test | Runs tests using the Surefire plugin |
mvn failsafe:integration-test | Runs integration tests before verifying the build |
mvn failsafe:verify | Ensures integration tests have passed before proceeding |
π Running Tests in Different Environments (Using Profiles)
Profiles allow running tests in different environments like QA, Staging, or Production.
1. Define Profiles in pom.xml
<profiles>
<profile>
<id>qa</id>
<properties>
<env>QA</env>
</properties>
</profile>
<profile>
<id>staging</id>
<properties>
<env>STAGING</env>
</properties>
</profile>
<profile>
<id>prod</id>
<properties>
<env>PRODUCTION</env>
</properties>
</profile>
</profiles>
2. Run Tests in a Specific Environment
Command | Usage |
mvn test -P qa | Runs tests in the QA environment |
mvn test -P staging | Runs tests in the Staging environment |
mvn test -P prod | Runs tests in the Production environment |
π Maven Commands for Continuous Integration (Jenkins)
Command | Usage |
mvn test -DskipTests | Skips test execution but still builds the project |
mvn clean install -DskipTests | Builds the project and installs it without running tests |
mvn clean test -Dmaven.test.failure.ignore=true | Runs tests but ignores failures (useful in CI/CD pipelines) |
mvn verify -Dparallel=classes -DthreadCount=3 | Runs tests in parallel with 3 threads |
π οΈ Debugging Maven Issues
Command | Usage |
mvn -X | Runs Maven in debug mode (shows detailed logs) |
mvn -e | Shows error messages in case of failures |
mvn help:effective-pom | Displays the effective POM.xml used by Maven |
mvn dependency:tree -Dverbose | Shows dependency resolution process (for conflict resolution) |
π― Maven Lifecycle Phases (Build Stages)
Maven has different phases in the build lifecycle. You donβt need to run each phase manuallyβjust running mvn install
will execute all previous phases automatically.
Phase | Description |
validate | Validates if the project structure and POM.xml are correct |
compile | Compiles the source code |
test | Runs unit tests and automation tests |
package | Creates a JAR/WAR file |
verify | Runs additional checks before installation |
install | Installs the package into the local repository |
deploy | Deploys the package to a remote repository |
π₯ Conclusion
As a Test Automation Engineer (SDET), mastering Maven commands is essential for managing dependencies, running test cases, debugging issues, and integrating with CI/CD tools like Jenkins.
π Top 10 Most Used Maven Commands in Automation Testing
1οΈβ£ mvn clean
β Removes old files.
2οΈβ£ mvn compile
β Compiles the project.
3οΈβ£ mvn test
β Runs the test cases.
4οΈβ£ mvn package
β Creates a JAR/WAR file.
5οΈβ£ mvn install
β Installs the project locally.
6οΈβ£ mvn deploy
β Deploys the package.
7οΈβ£ mvn surefire-report:report
β Generates test reports.
8οΈβ£ mvn test -Dtest=TestClassName
β Runs specific tests.
9οΈβ£ mvn test -P qa
β Runs tests in different environments.
π mvn verify -Dparallel=classes -DthreadCount=3
β Runs tests in parallel.
Subscribe to my newsletter
Read articles from SESHADRI KOLLA directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
