From 2a4fb21c00162d1135c65fc5a8ff25c946e710d3 Mon Sep 17 00:00:00 2001 From: theJawnnybot Date: Thu, 5 Mar 2026 21:08:18 -0600 Subject: [PATCH] build: use default Maven Central host configuration --- build.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 2c81f7a..886b947 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,3 @@ -import com.vanniktech.maven.publish.SonatypeHost - plugins { id 'java-library' id 'org.jetbrains.kotlin.jvm' version '2.1.10' @@ -34,7 +32,7 @@ tasks.withType(Test).configureEach { } mavenPublishing { - publishToMavenCentral(SonatypeHost.S01) + publishToMavenCentral() if (System.getenv("RELEASE_SIGNING_ENABLED") == "true") { signAllPublications() }