branch-4.0: [chore](dep) pin esdk-obs-java-bundle to 3.21.11 to fix version range resolution failure #63278#63283
Merged
Conversation
… resolution failure (#63278) ## Problem The version `[3.21.11,)` in `fe/pom.xml` is a Maven version range, which requires Maven to download `maven-metadata.xml` from **every configured repository** and merge the results before selecting a version. The Huawei OBS Maven repository (`https://repo.huaweicloud.com/repository/maven/huaweicloudsdk/`) does not carry this artifact at all (returns 404 for its metadata) or is not stable. This causes `maven-remote-resources-plugin` to fail the entire range resolution and report: ``` No versions are present in the repository for the artifact with a range [3.21.11,) com.huaweicloud:esdk-obs-java-bundle:jar:null ``` ## Fix Pin the version to the specific minimum `3.21.11`, which is available on Maven Central (and its mirrors such as aliyunmaven). With a fixed version, Maven resolves the artifact by trying repositories one by one and succeeds as soon as any working repository (e.g. aliyunmaven) responds — it no longer depends on the unstable Huawei OBS repository for range resolution. ## Verification `3.21.11` is confirmed present on Maven Central: ``` https://repo1.maven.org/maven2/com/huaweicloud/esdk-obs-java-bundle/3.21.11/ ``` Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
|
run buildall |
Contributor
|
skip buildall |
Contributor
FE UT Coverage ReportIncrement line coverage `` 🎉 |
morningman
approved these changes
May 16, 2026
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.
Cherry-picked from #63278