desruisseaux commented on code in PR #11690:
URL: https://github.com/apache/maven/pull/11690#discussion_r2751343394
##########
compat/maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java:
##########
@@ -32,13 +32,22 @@
import org.apache.maven.artifact.versioning.VersionRange;
/**
- * Maven Artifact interface. Notice that it mixes artifact definition concepts
(groupId, artifactId, version)
+ * Maven Artifact interface. Notice that it mixes artifact definition concepts
+ * (groupId, artifactId, version)
* with dependency information (version range, scope).
*/
public interface Artifact extends Comparable<Artifact> {
+ /**
+ * @deprecated since 4.0.0.
+ * Use an explicit version instead.
+ */
@Deprecated(since = "4.0.0")
String RELEASE_VERSION = "RELEASE";
+ /**
+ * @deprecated since 4.0.0.
Review Comment:
Idem: replace the redundant "since 4.0.0" text by a text explaining what is
the replacement, or why there is no replacement.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]