data class Dependency
Data class of dependency configuration.
Dependency(group: String, module: String, version: String)
initialize a dependency object |
val group: String
group or organization of the dependency |
|
val hasLatestPattern: Boolean
Returns true if the version contains a placeholder for latest versions. |
|
val hasLatestVersion: Boolean
Returns true if the version contains the placeholder for latest version overall. |
|
val hasVersionPattern: Boolean
Returns true if the version contains a placeholder for versions. |
|
val module: String
module or name of the dependency |
|
val version: String
version or revision of the dependency |
|
val versionPattern: String
Get a version pattern from the configuration. |
fun getDependencyString(): String
Get the standard Gradle dependency string from dependency object. |