Maven

How to skip Maven unit test example

In this tutorial we will show you how to avoid running the unit tests of a Maven based Java project. By default, Apache Maven executes all unit tests automatically, when building a project. However, if a single test fails, Maven aborts the building process and reports the encountered errors.

In this example, we use the following tools on a Windows 7 platform:

  • Apache Maven 3.1.1
  • JDK 1.7
  • Maven Surefire Plugin 2.16

 
In any case you don’t want the building procedure to halt because of a unit test failure, Maven is capable of skipping all unit tests and continue with the project building procedure.

In order to skip the unit test execution, we must add the -Dmaven.test.skip=true argument to our command. For example:

mvn install -Dmaven.test.skip=true
mvn package -Dmaven.test.skip=true

Alternatively, we can take advantage of the maven-surefire-plugin. The Surefire Plugin is used during the test phase of the build lifecycle to execute the unit tests of an application. In our pom.xml file, we add the following snippet:

<build>
   <plugins>
      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <version>2.16</version>
         <configuration>
            <skipTests>true</skipTests>
         </configuration>
      </plugin>
   </plugins>
</build>

In the above snippet we observe that we define skipTests as true. If we rebuild the project, all unit tests will be completely ignored. For example, if we execute the command:

mvn clean install

we shall observe the following message in the command line:

mvn_skip_unit_tests_WM

 
This was an example on how to skip all unit tests of a Maven based Java project.

Want to know how to develop your skillset to become a Java Rockstar?

Join our newsletter to start rocking!

To get you started we give you our best selling eBooks for FREE!

 

1. JPA Mini Book

2. JVM Troubleshooting Guide

3. JUnit Tutorial for Unit Testing

4. Java Annotations Tutorial

5. Java Interview Questions

6. Spring Interview Questions

7. Android UI Design

 

and many more ....

 

Receive Java & Developer job alerts in your Area

I have read and agree to the terms & conditions

 

Sotirios-Efstathios Maneas

Sotirios-Efstathios (Stathis) Maneas is a PhD student at the Department of Computer Science at the University of Toronto. His main interests include distributed systems, storage systems, file systems, and operating systems.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button