From 064edd1389ba5faee0735ab076f281d7b29026ad Mon Sep 17 00:00:00 2001 From: 0marperez Date: Thu, 29 May 2025 20:59:54 -0400 Subject: [PATCH] misc: update aws nexus repo uris --- .../src/main/kotlin/aws/sdk/kotlin/gradle/dsl/Publish.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl/Publish.kt b/build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl/Publish.kt index 9259272f..76b7958a 100644 --- a/build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl/Publish.kt +++ b/build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl/Publish.kt @@ -155,8 +155,8 @@ fun Project.configureNexus() { packageGroup.set(publishGroupName) repositories { create("awsNexus") { - nexusUrl.set(uri("https://aws.oss.sonatype.org/service/local/")) - snapshotRepositoryUrl.set(uri("https://aws.oss.sonatype.org/content/repositories/snapshots/")) + nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/")) + snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/")) username.set(project.property(SONATYPE_USERNAME_PROP) as String) password.set(project.property(SONATYPE_PASSWORD_PROP) as String) }