Skip to content

Instantly share code, notes, and snippets.

@wcaquino
Created March 17, 2020 23:16
Show Gist options
  • Save wcaquino/19ac72382ca8df8ed70514ef48b84523 to your computer and use it in GitHub Desktop.
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
<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>
@DouglasEleuterio
Copy link

Show demais.

@samuelcostab
Copy link

Muito legal esse compartilhamento de arquivos.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment