Skip to content

Commit

Permalink
chore(pom.xml): update Jupiter Surefire version to 1.3.2 for improved…
Browse files Browse the repository at this point in the history
… test execution

feat(pom.xml): add Maven Surefire plugin with configuration to redirect test output to file and use plain report format
  • Loading branch information
jandroav committed Jul 28, 2023
1 parent 925fb1f commit 272e3cc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
<copy-rename-maven-plugin.version>1.0.1</copy-rename-maven-plugin.version>
<hamcrest.version>1.3</hamcrest.version>
<jupiter.version>5.9.3</jupiter.version>
<jupiter.surefire.version>1.3.2</jupiter.surefire.version>
<mockito-core.version>4.11.0</mockito-core.version>
<mockito-junit-jupiter.version>4.8.0</mockito-junit-jupiter.version>
</properties>
Expand Down Expand Up @@ -247,6 +248,14 @@
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<reportFormat>plain</reportFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
Expand Down

0 comments on commit 272e3cc

Please sign in to comment.