This is an automated email from the ASF dual-hosted git repository.
capistrant pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 92e60fbdb05 Use 2 phased distribution build to avoid issues with
parallelization and the distribution module (#18376)
92e60fbdb05 is described below
commit 92e60fbdb058b4b0dafe50b53db2f0ec8d89ff04
Author: Lucas Capistrant <[email protected]>
AuthorDate: Wed Aug 6 15:59:14 2025 -0500
Use 2 phased distribution build to avoid issues with parallelization and
the distribution module (#18376)
---
web-console/script/druid | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/web-console/script/druid b/web-console/script/druid
index 0735de0a14e..2edb40439be 100755
--- a/web-console/script/druid
+++ b/web-console/script/druid
@@ -56,7 +56,8 @@ function _build_distribution() {
(
# Add HEAD as an allowed HTTP method since this is how we check when the
Druid service is ready.
cd "$(_get_code_root)" \
- && mvn -Pdist,bundle-contrib-exts,skip-static-checks,skip-tests
-Dforbiddenapis.skip=true -Dcheckstyle.skip=true -Dpmd.skip=true
-Dmaven.javadoc.skip=true -Danimal.sniffer.skip=true -Denforcer.skip=true
-Dcyclonedx.skip=true -q -T1C install \
+ && mvn -pl '!distribution' -Pskip-static-checks,skip-tests
-Dforbiddenapis.skip=true -Dcheckstyle.skip=true -Dpmd.skip=true
-Dmaven.javadoc.skip=true -Danimal.sniffer.skip=true -Denforcer.skip=true
-Dcyclonedx.skip=true -q -T1C install \
+ && mvn -pl 'distribution'
-Pdist,bundle-contrib-exts,skip-static-checks,skip-tests
-Dforbiddenapis.skip=true -Dcheckstyle.skip=true -Dpmd.skip=true
-Dmaven.javadoc.skip=true -Danimal.sniffer.skip=true -Denforcer.skip=true
-Dcyclonedx.skip=true -q install \
&& cd distribution/target \
&& tar xzf "apache-druid-$(_get_druid_version)-bin.tar.gz" \
&& cd apache-druid-$(_get_druid_version) \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]