-
Notifications
You must be signed in to change notification settings - Fork 283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
De-listed Maven Central versions #223
Comments
Why is this issue filed here? I don't understand the problem. |
The issue is filled here as
If this issue tracker is not suitable due to my wrong assumptions/understanding, please let me know the relevant issue tracker, thank you. The problem is that, the latest updates to In practice:
|
Moving to spring-cloud-build as spring-cloud-release-tools is some automation for us, it doesn't have anything to do with maven besides just running I still don't know what the issue is or how we could fix it. I think that file is generated by nexus by sontatype where we deploy, not by anything we control. |
From past experiences with maven-deploy-plugin with private repositories (also using Sonatype Nexus), the Maven plugin itself will first download Unfortunately, I have no experience with Maven Central publishing, so I don't know whether that knowledge applies to it. |
At its core, the issue is:
(I also observed similar situation with other Spring Cloud subprojects) |
I still don't think there's anything we can do. |
Should I request Maven Central to repair Spring Cloud artifacts metadata? My concern is that:
|
We can make the request |
Description
Versions previously listed in Maven Central artifacts metadata (
maven-metadata.xml
) are no longer listed, breaking workflows that rely on automatically identifying available versions (with or without locking).Examples:
3.1.*
versions:3.1.0
,3.1.1
,3.1.2
,3.1.3
,3.1.4
,3.1.5
3.1.*
versions listed inmaven-metadata.xml
:3.1.0
,3.1.1
3.0.*
versions:3.0.0
,3.0.1
,3.0.2
,3.0.3
3.0.*
versions listed inmaven-metadata.xml
:3.0.0
,3.0.1
Sample
build.gradle.kts
gradle build
output:Workaround: switch to statically defined version / manual version locking
References
https://docs.gradle.org/current/userguide/single_versions.html
https://maven.apache.org/pom.html#Dependency_Version_Requirement_Specification
The text was updated successfully, but these errors were encountered: