From 2cc27a767acacab07c4c7c4565d5fe0235dad28d Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Thu, 4 Mar 2021 12:10:18 +0900 Subject: [PATCH] Fix nexus URL. --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 48a7929086..8ba9a5045a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,7 +33,7 @@ release { nexusPublishing { repositories { sonatype { - nexusUrl.set(uri("https://aws.oss.sonatype.org/service/local/staging/deploy/maven2/")) + nexusUrl.set(uri("https://aws.oss.sonatype.org/service/local/")) snapshotRepositoryUrl.set(uri("https://aws.oss.sonatype.org/content/repositories/snapshots/")) username.set(System.getenv("PUBLISH_USERNAME")) password.set(System.getenv("PUBLISH_PASSWORD"))