Update decommissioned s01.oss.sonatype.org snapshot URL to Central Portal#3846
Open
kobihikri wants to merge 2 commits into
Open
Update decommissioned s01.oss.sonatype.org snapshot URL to Central Portal#3846kobihikri wants to merge 2 commits into
kobihikri wants to merge 2 commits into
Conversation
…rtal (buildSrc/src/main/kotlin/mockito.root.releasing-conventions.gradle.kts)
jselbo
requested changes
Jul 15, 2026
| """ | ||
| RELEASE SUMMARY | ||
| SNAPSHOTS released to: https://s01.oss.sonatype.org/content/repositories/snapshots/org/mockito/mockito-core | ||
| SNAPSHOTS released to: https://central.sonatype.com/repository/maven-snapshots/org/mockito/mockito-core |
Collaborator
There was a problem hiding this comment.
The new links don't work - they go to a 404 page.
I recently fixed these links in the mockito-kotlin repo. I believe it should be:
https://central.sonatype.com/artifact/org.mockito/mockito-core
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi, and thank you for Mockito.
Two references still point at the decommissioned Sonatype OSSRH host
s01.oss.sonatype.org, which Sonatype has retired in favour of the Central Portal:README.md(line 76): the "How to release" snapshot download URL.buildSrc/src/main/kotlin/mockito.root.releasing-conventions.gradle.kts(line 40): the "SNAPSHOTS released to:" log message.Your build's actual publishing config has already migrated — the same file (line 66) defines
snapshotRepositoryUrl = uri("https://central.sonatype.com/repository/maven-snapshots/"). So these two strings just lag the real endpoint. This PR updates boths01.oss.sonatype.org/content/repositories/snapshotsreferences tohttps://central.sonatype.com/repository/maven-snapshots, matching your ownsnapshotRepositoryUrl.For transparency: I used AI assistance to spot and draft this; I verified all three locations against the current source myself.