nddipiazza opened a new pull request, #2510: URL: https://github.com/apache/tika/pull/2510
## Summary Fixes https://issues.apache.org/jira/browse/TIKA-4609 The original commit 218508d48 accidentally introduced line breaks in the Maven property name, breaking Windows builds. ## Problem The property name was split across lines with a space: ``` -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfe r.Slf4jMavenTransferListener=warn ``` This caused Maven to not recognize the property correctly. ## Solution Keep the full property name on one line without spaces: ``` -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn ``` ## Changes - Fix all 5 workflow files (.github/workflows/*.yml) - Properly suppress Maven transfer listener output - Maintains the original goal of reducing CI log verbosity ## Testing This should make CI logs cleaner by: - Using `-B` (batch mode) to suppress interactive progress - Suppressing Maven download/upload progress messages - Making error messages more visible Without breaking Windows or any other builds. -- 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]
