This is an automated email from the ASF dual-hosted git repository.
joemcdonnell pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
The following commit(s) were added to refs/heads/master by this push:
new 356062193 IMPALA-14503: Log maven dependency when building frontend
356062193 is described below
commit 3560621931999de0b655e9deb237e8c2f2288343
Author: Riza Suminto <[email protected]>
AuthorDate: Wed Oct 15 13:13:28 2025 -0700
IMPALA-14503: Log maven dependency when building frontend
Impala Frontend has plenty of dependency, along with multitudes of
dependency exclusion/inclusion rules in it. This patch adds maven
dependency tree log to logs/mvn/mvn.log when invoking "make java"
command.
Testing:
Manually run "make java" from $IMPALA_HOME and verify that the
dependency trees are logged to logs/mvn/mvn.log.
Change-Id: I8cbe20faeab24bae708733d54996bd6c1dd97757
Reviewed-on: http://gerrit.cloudera.org:8080/23551
Reviewed-by: Michael Smith <[email protected]>
Tested-by: Michael Smith <[email protected]>
Reviewed-by: Joe McDonnell <[email protected]>
---
java/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/CMakeLists.txt b/java/CMakeLists.txt
index d26c4614e..9e8add8c9 100644
--- a/java/CMakeLists.txt
+++ b/java/CMakeLists.txt
@@ -20,5 +20,5 @@ add_custom_target(validate_java_pom_versions ALL
)
add_custom_target(java ALL DEPENDS gen-deps function-registry
geospatial-udf-wrappers validate_java_pom_versions
- COMMAND $ENV{IMPALA_HOME}/bin/mvn-quiet.sh -B install -DskipTests
+ COMMAND $ENV{IMPALA_HOME}/bin/mvn-quiet.sh -B dependency:tree install
-DskipTests
)