rmannibucau commented on code in PR #869:
URL: https://github.com/apache/maven/pull/869#discussion_r1019463457
##########
maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java:
##########
@@ -1593,7 +1622,10 @@ private TransferListener determineTransferListener(
final boolean quiet,
final CommandLine
commandLine,
final
MavenExecutionRequest request )
{
- if ( quiet || commandLine.hasOption( CLIManager.NO_TRANSFER_PROGRESS )
)
+ String ciEnv = request.getSystemProperties().getProperty( "env.CI" );
+ boolean quietCI = "true".equals( ciEnv ) && !commandLine.hasOption(
FORCE_INTERACTIVE );
Review Comment:
https://github.com/gradle/gradle/blob/master/build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt#L31
https://github.com/gradle/gradle/blob/master/gradle/shared-with-buildSrc/mirrors.settings.gradle.kts#L46
https://github.com/gradle/gradle/blob/master/subprojects/docs/src/snippets/buildCache/conditional-action/groovy/build.gradle#L6
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]