Created
March 17, 2020 23:16
-
-
Save wcaquino/19ac72382ca8df8ed70514ef48b84523 to your computer and use it in GitHub Desktop.
Fragmento de código para execução em paralelo através do surefire
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.20</version> | |
<configuration> | |
<parallel>all</parallel> | |
<useUnlimitedThreads>true</useUnlimitedThreads> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> |
Muito legal esse compartilhamento de arquivos.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Show demais.