This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 873503e662 [KYUUBI #7073] Retry 3 times on deploying to nexus
873503e662 is described below
commit 873503e662017bcae3367754cc70893aa9cd9ba4
Author: Cheng Pan <[email protected]>
AuthorDate: Fri May 23 01:55:40 2025 +0800
[KYUUBI #7073] Retry 3 times on deploying to nexus
### Why are the changes needed?
Retry on deploying failure to overcome the transient issues.
### How was this patch tested?
Review.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #7073 from pan3793/deploy-retry.
Closes #7073
f42bd663b [Cheng Pan] Retry 3 times on deploying to nexus
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
pom.xml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 86e7628be5..b13ab510f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2246,7 +2246,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
- <inherited>true</inherited>
+ <configuration>
+
<retryFailedDeploymentCount>3</retryFailedDeploymentCount>
+ </configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>