From 529711afd5588a9365bc243dde713af8775490f5 Mon Sep 17 00:00:00 2001 From: Udo Kohlmeyer Date: Tue, 28 Feb 2023 12:06:48 +1100 Subject: [PATCH] Fix credential property for push Repository --- .../src/main/groovy/gemfire-repo-artifact-publishing.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-tools/publishing/src/main/groovy/gemfire-repo-artifact-publishing.gradle b/build-tools/publishing/src/main/groovy/gemfire-repo-artifact-publishing.gradle index 9d9be31..26181c9 100644 --- a/build-tools/publishing/src/main/groovy/gemfire-repo-artifact-publishing.gradle +++ b/build-tools/publishing/src/main/groovy/gemfire-repo-artifact-publishing.gradle @@ -44,8 +44,8 @@ publishing { // Username / password credentials are only supported for http, https, and sftp repos. // See the Gradle documentation on Repository Types for more information. credentials { - username project.findProperty("gemfireRepoUsername") - password project.findProperty("gemfireRepoPassword") + username project.findProperty("gemfirePublishRepoUsername") + password project.findProperty("gemfirePublishRepoPassword") } } } else {