maven lightweight output
By default, when executing a maven command, all the logs are displayed in the console. You can configure the test logs to be displayed in files instead, making the console output lighter:
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
</configuration>
</plugin>