Skip to content

Commit e8a1f54

Browse files
committed
chore: change publication urls
1 parent 67e847a commit e8a1f54

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build-logic/conventions/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
compileOnly("com.diffplug.spotless:spotless-plugin-gradle:7.0.2")
10+
implementation("com.diffplug.spotless:spotless-plugin-gradle:7.0.2")
1111
}
1212

1313
gradlePlugin {

build-logic/conventions/src/main/kotlin/Publish.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ fun Project.configureMavenPublish() {
5353
name = "OSSRH"
5454
url = uri(
5555
if (isReleaseVersion)
56-
"https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
56+
"https://central.sonatype.com/repository/maven-snapshots/"
5757
else
58-
"https://s01.oss.sonatype.org/content/repositories/snapshots/"
58+
"https://ossrh-staging-api.central.sonatype.com/service/local/"
5959
)
6060
credentials {
6161
username = findProperty("ossrh.username") as String? ?: System.getenv("OSSRH_USERNAME")

0 commit comments

Comments
 (0)