Master Automation Testing with Maven: Tips and Tricks .

SESHADRI KOLLASESHADRI KOLLA
5 min read

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:

  1. Managing dependencies (like Selenium, TestNG, REST Assured).

  2. Running test scripts using the command line.

  3. Generating test reports.

  4. Integrating with CI/CD tools like Jenkins.

πŸš€ Essential Maven Commands for Test Automation Engineers (SDET)

CommandUsage
mvn cleanDeletes the target directory (removes compiled files, old reports, logs)
mvn compileCompiles the source code of the project (only compiles, does not run tests)
mvn testRuns all unit tests & automation tests (TestNG/JUnit)
mvn packageCompiles and packages the project into a JAR/WAR file
mvn installInstalls the built package into the local repository (.m2 folder)
mvn deployDeploys the packaged project to a remote repository (for team collaboration)
mvn verifyRuns tests and verifies project integrity before deployment
mvn validateEnsures all necessary configurations and dependencies are available
mvn siteGenerates a website with project documentation and reports

πŸ“Œ Advanced Maven Commands for Test Engineers

CommandUsage
mvn dependency:treeDisplays the dependency hierarchy (helps resolve conflicts)
mvn dependency:analyzeChecks for unused and missing dependencies
mvn dependency:copy-dependenciesCopies all dependencies to the target folder
mvn help:describe -Dplugin=<plugin-name>Displays details about a specific plugin
mvn versions:display-dependency-updatesShows available updates for project dependencies
mvn versions:display-plugin-updatesShows available updates for project plugins

⚑ Running Tests in Different Ways

CommandUsage
mvn test -Dtest=TestClassNameRuns a specific TestNG/JUnit class
mvn test -Dtest=TestClass#methodNameRuns a specific test method
mvn test -DsuiteXmlFile=TestSuite.xmlRuns 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)

CommandUsage
mvn surefire-report:reportGenerates a TestNG/JUnit report using Surefire plugin
mvn surefire:testRuns tests using the Surefire plugin
mvn failsafe:integration-testRuns integration tests before verifying the build
mvn failsafe:verifyEnsures 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

CommandUsage
mvn test -P qaRuns tests in the QA environment
mvn test -P stagingRuns tests in the Staging environment
mvn test -P prodRuns tests in the Production environment

πŸš€ Maven Commands for Continuous Integration (Jenkins)

CommandUsage
mvn test -DskipTestsSkips test execution but still builds the project
mvn clean install -DskipTestsBuilds the project and installs it without running tests
mvn clean test -Dmaven.test.failure.ignore=trueRuns tests but ignores failures (useful in CI/CD pipelines)
mvn verify -Dparallel=classes -DthreadCount=3Runs tests in parallel with 3 threads

πŸ› οΈ Debugging Maven Issues

CommandUsage
mvn -XRuns Maven in debug mode (shows detailed logs)
mvn -eShows error messages in case of failures
mvn help:effective-pomDisplays the effective POM.xml used by Maven
mvn dependency:tree -DverboseShows 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.

PhaseDescription
validateValidates if the project structure and POM.xml are correct
compileCompiles the source code
testRuns unit tests and automation tests
packageCreates a JAR/WAR file
verifyRuns additional checks before installation
installInstalls the package into the local repository
deployDeploys 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.

0
Subscribe to my newsletter

Read articles from SESHADRI KOLLA directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

SESHADRI KOLLA
SESHADRI KOLLA