Skip to content

Commit

Permalink
fix logging in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmestefanjay committed Sep 16, 2024
1 parent 13f735e commit 40c1116
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions template-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,21 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<!-- This ensures System.out and System.err are captured -->
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<printSummary>true</printSummary>
<useFile>false</useFile>
</configuration>
</plugin>
</plugins>
</build>


</project>

0 comments on commit 40c1116

Please sign in to comment.