Enum DependencyVerificationMode
- java.lang.Object
-
- java.lang.Enum<DependencyVerificationMode>
-
- org.gradle.api.artifacts.verification.DependencyVerificationMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DependencyVerificationMode>
public enum DependencyVerificationMode extends java.lang.Enum<DependencyVerificationMode>
The different dependency verification modes. By default, Gradle will use the strict mode, which means that it will verify dependencies and fail as soon as possible, to avoid as much compromising of the builds as possible. There are, however, two additional modes which can be used: the lenient one will collect all errors but only log them to the CLI. This is useful when updating the file and you want to collect as many errors as possible before failing. The last one is "off", meaning that even if verification metadata is present, Gradle will not perform any verification. This can typically be used whenever verification should only happen on CI.- Since:
- 6.2
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DependencyVerificationMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DependencyVerificationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRICT
public static final DependencyVerificationMode STRICT
-
LENIENT
public static final DependencyVerificationMode LENIENT
-
OFF
public static final DependencyVerificationMode OFF
-
-
Method Detail
-
values
public static DependencyVerificationMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DependencyVerificationMode c : DependencyVerificationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DependencyVerificationMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-