-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Resolver updates #1495
Resolver updates #1495
Conversation
gnodet
commented
May 2, 2024
•
edited
Loading
edited
- Resolver updates
- Remove a few other references
@@ -116,17 +116,6 @@ public Artifact setVersion(String version) { | |||
return new RelocatedArtifact(artifact, groupId, artifactId, classifier, extension, version, message); | |||
} | |||
|
|||
@Deprecated | |||
@Override | |||
public Artifact setFile(File file) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will break compat, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maven-resolver-provider RelocatedArtifact is present in mvn3 as well, I mean "binary compat"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mmh, not sure, as a default implementation is provided by AbstractArtifact
... ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've reverted the removal of the two setFile()
methods to be safe.
This reverts commit 144bc73.