From 12d3dfdd9688da38f83fc38027724b36b2de7032 Mon Sep 17 00:00:00 2001 From: Steven Ourada Date: Mon, 18 Nov 2024 09:12:28 -0600 Subject: [PATCH] Another attempt at fixing publishing adding this to allow initializeSonatypeStagingRepository task to work --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index ca84698..9f174ae 100644 --- a/build.gradle +++ b/build.gradle @@ -55,6 +55,8 @@ nexusPublishing { sonatype { nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/")) snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")) + username = project.ossrhUsername + password = project.ossrhPassword } } }