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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ See [Running the tests](./docs/contributing/running-tests.md) for more details.

For developers testing code changes before a release is complete, there are
snapshot builds of the `main` branch. They are available from
the Sonatype OSS snapshots repository at `https://oss.sonatype.org/content/repositories/snapshots/`
([browse](https://oss.sonatype.org/content/repositories/snapshots/io/opentelemetry/))
the Sonatype OSS snapshots repository at `https://central.sonatype.com/repository/maven-snapshots/`
([browse](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/opentelemetry/))

### Building from source

Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The version is specified in [version.gradle.kts](version.gradle.kts).

Every successful CI build of the main branch automatically executes `./gradlew publishToSonatype`
as the last step, which publishes a snapshot build to
[Sonatype OSS snapshots repository](https://oss.sonatype.org/content/repositories/snapshots/io/opentelemetry/).
[Sonatype OSS snapshots repository](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/opentelemetry/).

## Release cadence

Expand Down
4 changes: 2 additions & 2 deletions examples/distro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
}
dependencies {
Expand Down Expand Up @@ -48,7 +48,7 @@ subprojects {
mavenCentral()
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/distro/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pluginManagement {
gradlePluginPortal()
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ repositories {
mavenCentral()
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/extension/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pluginManagement {
gradlePluginPortal()
maven {
name = "sonatype"
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
}
}
Expand Down
Loading