From be4286b92d418c30a6c1b9872918a1b3c486da13 Mon Sep 17 00:00:00 2001 From: David Chang Date: Thu, 3 Mar 2022 07:54:47 -0800 Subject: [PATCH] Update to new Sonatype host Following steps in https://github.com/vanniktech/gradle-maven-publish-plugin#where-to-upload-to for pointing to the new host. --- build.gradle | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a50e08f0..be80be29 100644 --- a/build.gradle +++ b/build.gradle @@ -26,6 +26,14 @@ allprojects { } } +allprojects { + plugins.withId("com.vanniktech.maven.publish") { + mavenPublish { + sonatypeHost = "S01" + } + } +} + task clean(type: Delete) { delete rootProject.buildDir -} \ No newline at end of file +}