This is an automated email from the ASF dual-hosted git repository.
yuqi1129 pushed a commit to branch branch-1.3
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-1.3 by this push:
new aa47371125 [Cherry-pick to branch-1.3] [#11368] fix(docker): Build
bundle jars for Docker image (#11388) (#11390)
aa47371125 is described below
commit aa47371125d83ecf04feebeaeb92a2669abe1c50
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jun 3 14:15:41 2026 +0800
[Cherry-pick to branch-1.3] [#11368] fix(docker): Build bundle jars for
Docker image (#11388) (#11390)
**Cherry-pick Information:**
- Original commit: 9170a770b93a8848f56ead6bbca51592ee29c19d
- Target branch: `branch-1.3`
- Status: ✅ Clean cherry-pick (no conflicts)
Co-authored-by: Qi Yu <[email protected]>
---
dev/docker/gravitino/gravitino-dependency.sh | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/dev/docker/gravitino/gravitino-dependency.sh
b/dev/docker/gravitino/gravitino-dependency.sh
index c31056862d..e0f95ebde4 100755
--- a/dev/docker/gravitino/gravitino-dependency.sh
+++ b/dev/docker/gravitino/gravitino-dependency.sh
@@ -47,12 +47,18 @@ download_gcs_connector() {
rm "${temp_file}"
}
-# Build the Gravitino project
-${gravitino_home}/gradlew clean build -x test
-
rm -rf ${gravitino_home}/distribution
# Prepare compile Gravitino packages
-${gravitino_home}/gradlew compileDistribution -x test
+${gravitino_home}/gradlew compileDistribution \
+ :bundles:aliyun-bundle:shadowJar \
+ :bundles:aws-bundle:shadowJar \
+ :bundles:gcp-bundle:shadowJar \
+ :bundles:azure-bundle:shadowJar \
+ :bundles:iceberg-gcp-bundle:shadowJar \
+ :bundles:iceberg-aws-bundle:shadowJar \
+ :bundles:iceberg-azure-bundle:shadowJar \
+ :bundles:iceberg-aliyun-bundle:shadowJar \
+ -x test
# Removed old packages, Avoid multiple re-executions using the wrong file
rm -rf "${gravitino_dir}/packages"