You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A common problem I have faced when working on large projects that run with large thread counts is that the executed program output can be hard to identify with the Maven console output.
As an example, a simple Maven multi-module project where each project is executing:
<execution>
<id>test</id>
<phase>compile</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>bash</executable>
<arguments>
<argument>-c</argument>
<argument><![CDATA[ for i in {1..10000} do echo "${project.artifactId} - $i" done]]></argument>
</arguments>
</configuration>
</execution>
It would be great to have an option (or maybe even make it the default behavior) to redirect program output into the Maven logger, so that we can trace the program output within a specific build thread, and so that log output is synchronized to avoid jumbled output. For the example above, the preferred output would be something more similar to:
A common problem I have faced when working on large projects that run with large thread counts is that the executed program output can be hard to identify with the Maven console output.
As an example, a simple Maven multi-module project where each project is executing:
The Maven console output may come as:
It would be great to have an option (or maybe even make it the default behavior) to redirect program output into the Maven logger, so that we can trace the program output within a specific build thread, and so that log output is synchronized to avoid jumbled output. For the example above, the preferred output would be something more similar to:
The text was updated successfully, but these errors were encountered: