This is an automated email from the ASF dual-hosted git repository. zixuan pushed a commit to branch branch-as-3.0 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 244d6dfd6cc84753e334cdfe3a999b284014d08e Author: Zixuan Liu <[email protected]> AuthorDate: Tue Jul 30 00:47:34 2024 +0800 [improve][build] Move docker-push profile to submodule (#23093) Signed-off-by: Zixuan Liu <[email protected]> (cherry picked from commit 47d35a0af8ef72062288866f0c875312b5684906) --- docker/pom.xml | 7 ------- docker/pulsar-all/pom.xml | 7 +++++++ docker/pulsar/pom.xml | 7 +++++++ 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/docker/pom.xml b/docker/pom.xml index 657ee171dbe..cf3fd1f3c33 100644 --- a/docker/pom.xml +++ b/docker/pom.xml @@ -74,12 +74,5 @@ </plugins> </build> </profile> - <profile> - <id>docker-push</id> - <properties> - <docker.skip.push>false</docker.skip.push> - <docker.platforms>linux/amd64,linux/arm64</docker.platforms> - </properties> - </profile> </profiles> </project> diff --git a/docker/pulsar-all/pom.xml b/docker/pulsar-all/pom.xml index 48a0f0e8ac0..82332a1ca92 100644 --- a/docker/pulsar-all/pom.xml +++ b/docker/pulsar-all/pom.xml @@ -177,5 +177,12 @@ </plugins> </build> </profile> + <profile> + <id>docker-push</id> + <properties> + <docker.skip.push>false</docker.skip.push> + <docker.platforms>linux/amd64,linux/arm64</docker.platforms> + </properties> + </profile> </profiles> </project> diff --git a/docker/pulsar/pom.xml b/docker/pulsar/pom.xml index 3da5705db18..a3a67b837ee 100644 --- a/docker/pulsar/pom.xml +++ b/docker/pulsar/pom.xml @@ -123,5 +123,12 @@ </plugins> </build> </profile> + <profile> + <id>docker-push</id> + <properties> + <docker.skip.push>false</docker.skip.push> + <docker.platforms>linux/amd64,linux/arm64</docker.platforms> + </properties> + </profile> </profiles> </project>
