From c1679a2a7b9614e7c59062b866bc58a4e64f70f4 Mon Sep 17 00:00:00 2001 From: christianrowlands Date: Mon, 5 Aug 2024 14:02:34 -0400 Subject: [PATCH] Update the studer credentials plugin to 3.0 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index b623f5e..b206168 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ plugins { id 'maven-publish' id 'signing' id 'com.google.protobuf' version '0.9.4' - id 'nu.studer.credentials' version '1.0.7' + id 'nu.studer.credentials' version '3.0' } group 'com.craxiom' @@ -175,5 +175,5 @@ signing { * @return The credential value if located. */ private String findCredentialValue(String value) { - return project.credentials."sonatype$value" + return project.credentials.forKey("sonatype$value") }