You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by lh...@apache.org on 2022/09/09 20:42:58 UTC

[pulsar-client-reactive] branch main updated: Fix snapshot repository url

This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-reactive.git


The following commit(s) were added to refs/heads/main by this push:
     new 592faca  Fix snapshot repository url
592faca is described below

commit 592facab4288e2500466d4fb46124969e786901b
Author: Lari Hotari <lh...@apache.org>
AuthorDate: Fri Sep 9 23:42:37 2022 +0300

    Fix snapshot repository url
---
 .../src/main/groovy/pulsar-client-reactive.library-conventions.gradle   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildSrc/src/main/groovy/pulsar-client-reactive.library-conventions.gradle b/buildSrc/src/main/groovy/pulsar-client-reactive.library-conventions.gradle
index e6a817d..3046628 100644
--- a/buildSrc/src/main/groovy/pulsar-client-reactive.library-conventions.gradle
+++ b/buildSrc/src/main/groovy/pulsar-client-reactive.library-conventions.gradle
@@ -38,7 +38,7 @@ publishing {
 				url = project.property("publishDebug")
 			} else {
 				name = 'asf'
-				url = version.endsWith('-SNAPSHOT') ? 'https://repository.apache.org/snapshots' : 'https://repository.apache.org/service/local/staging/deploy/maven2'
+				url = version.endsWith('-SNAPSHOT') ? 'https://repository.apache.org/content/repositories/snapshots/' : 'https://repository.apache.org/service/local/staging/deploy/maven2'
 				credentials(PasswordCredentials)
 			}
 		}