Skip to content
Open
Show file tree
Hide file tree
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 @@ -55,7 +55,7 @@ public interface Language extends ExtensibleEnum {
*
* @deprecated Use {@link #RESOURCES} instead.
*/
@Deprecated
@Deprecated(since = "4.0.0", forRemoval = false)
Language SCRIPT = language("script");

// TODO: this should be moved out from here to Java Support (builtin into core)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,22 @@
*/
public interface Artifact extends Comparable<Artifact> {

/**
* @deprecated
* The use of the {@code RELEASE} version is discouraged because it results
* in non-reproducible builds and exposes projects to potential
* supply chain attacks.
* Use explicit versions instead.
*/
@Deprecated(since = "4.0.0")
String RELEASE_VERSION = "RELEASE";

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

Expand Down