Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,21 @@
*/
public interface Artifact extends Comparable<Artifact> {

/**
* @deprecated since 4.0.0.
* The use of the {@code RELEASE} version is discouraged because it results
* in non-reproducible builds.
* Use an explicit version or a version range instead.
*/
@Deprecated(since = "4.0.0")
String RELEASE_VERSION = "RELEASE";

/**
* @deprecated since 4.0.0.
* The use of the {@code LATEST} version is discouraged because it results
* in non-reproducible builds.
* Use an explicit version or a version range instead.
*/
@Deprecated(since = "4.0.0")
String LATEST_VERSION = "LATEST";

Expand Down