Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/java-server-sdk-otel/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ publishing {
nexusPublishing {
clientTimeout = java.time.Duration.ofMinutes(2) // we've seen extremely long delays in creating repositories
repositories {
sonatype()
sonatype{
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}

Expand Down
5 changes: 4 additions & 1 deletion lib/java-server-sdk-redis-store/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ publishing {
nexusPublishing {
clientTimeout = java.time.Duration.ofMinutes(2) // we've seen extremely long delays in creating repositories
repositories {
sonatype()
sonatype{
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}

Expand Down
5 changes: 4 additions & 1 deletion lib/shared/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ publishing {
nexusPublishing {
clientTimeout.set(Duration.ofMinutes(2)) // we've seen extremely long delays in creating repositories
repositories {
sonatype()
sonatype{
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}

Expand Down
5 changes: 4 additions & 1 deletion lib/shared/internal/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ publishing {
nexusPublishing {
clientTimeout.set(Duration.ofMinutes(2)) // we've seen extremely long delays in creating repositories
repositories {
sonatype()
sonatype{
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
}
}
}

Expand Down