Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 10, 2019 12:17
Show Gist options
  • Save ezhov-da/1cf7ee86800d6a58eb21e28233997f20 to your computer and use it in GitHub Desktop.
Save ezhov-da/1cf7ee86800d6a58eb21e28233997f20 to your computer and use it in GitHub Desktop.
skip tests
<!--Command line: mvn install -Dmaven.test.skip=true-->
<project>
[...]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
[...]
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment