mvn clean install -Dmaven.test.skip=true
mvn install -Dmaven.test.skip=true
# or
mvn install -DskipTests
# If -Dmaven.test.skip=true (or simply -Dmaven.test.skip) is specified,
# the test-jars aren't built, and any module that relies on them will
# fail its build.
# In contrast, when you use -DskipTests, Maven does not run the tests,
# but it does compile them and build the test-jar, making it available
# for the subsequent modules.
mvn clean install -DskipTests
mvn package -Dmaven.test.skip=true
mvn clean install -Dmaven.test.skip=true
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<configuration>
<systemPropertyVariables>
<skipTests>true</skipTests>
</systemPropertyVariables>
</configuration>
</plugin>
Skipping tests in Maven