Joe McDonnell created IMPALA-12284:
--------------------------------------
Summary: Use maven's batch mode when building jamm
Key: IMPALA-12284
URL: https://issues.apache.org/jira/browse/IMPALA-12284
Project: IMPALA
Issue Type: Improvement
Components: Infrastructure
Affects Versions: Impala 4.3.0
Reporter: Joe McDonnell
Maven's batch mode avoids the real-time progress on the downloads, which
reduces the output noise considerably. Let's use that option when building jamm
in java/CMakeLists.txt. i.e.
{noformat}
# Old
BUILD_COMMAND mvn --toolchains toolchains.xml install
-Dmaven.test.skip=true -DskipTests
# New
BUILD_COMMAND mvn -B --toolchains toolchains.xml install
-Dmaven.test.skip=true -DskipTests{noformat}
https://github.com/apache/impala/blob/master/java/CMakeLists.txt#L30
--
This message was sent by Atlassian Jira
(v8.20.10#820010)