diff --git a/gradle-plugin/src/main/kotlin/library.publishing.gradle.kts b/gradle-plugin/src/main/kotlin/library.publishing.gradle.kts index a1ce5a911..1be1d3627 100644 --- a/gradle-plugin/src/main/kotlin/library.publishing.gradle.kts +++ b/gradle-plugin/src/main/kotlin/library.publishing.gradle.kts @@ -58,7 +58,7 @@ val publishing: PublishingExtension = extensions.getByType() with(publishing) { repositories.maven { name = "mavenCentral" - setUrl("https://oss.sonatype.org/service/local/staging/deploy/maven2/") + setUrl("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/") credentials { username = providers.gradleProperty("sonatype.username") .orElse(providers.environmentVariable("SONATYPE_USERNAME")) @@ -71,7 +71,7 @@ with(publishing) { repositories.maven { name = "sonatypeSnapshots" - setUrl("https://oss.sonatype.org/content/repositories/snapshots/") + setUrl("https://s01.oss.sonatype.org/content/repositories/snapshots/") credentials { username = providers.gradleProperty("sonatype.username") .orElse(providers.environmentVariable("SONATYPE_USERNAME")) diff --git a/gradle.properties b/gradle.properties index 698d3cd73..0f44b5078 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,5 +9,5 @@ kapt.include.compile.classpath=false android.useAndroidX = true -version = 0.1.0 +version = 0.1.0-SNAPSHOT latestRelease = 0.1.0 \ No newline at end of file