Created
August 6, 2024 16:04
-
-
Save bdemers/d6c1dfbed56a9dfb5ad807c6e71e3ead to your computer and use it in GitHub Desktop.
This file contains 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
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<configuration> | |
<properties> | |
<!-- JUnit 5 specific configuration --> | |
<configurationParameters> | |
junit.jupiter.execution.parallel.enabled = true | |
junit.jupiter.execution.parallel.mode.default = concurrent | |
</configurationParameters> | |
</properties> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment