data class DependencyConfig
This class provides a class of a module dependency for the component extension. The default value of all properties is "".
group - group or organization of a dependency
module - name or module of a dependency
version - version of the dependency
dependency - string representation if dependency is not module dependency
transitive - if dependency should or was transitive resolved
DependencyConfig(group: String = "", module: String = "", version: String = "", dependency: String = "", transitive: Boolean = false)
provides an empty dependency configuration. |
val dependency: String
string representation if dependency is not module dependency |
|
val group: String
group or organization of a dependency |
|
val module: String
name or module of a dependency |
|
val transitive: Boolean
if dependency should or was transitive resolved |
|
val version: String
version of the dependency |
fun getExcludeProperties(): Map<String, String>
Returns a map of properties for the Gradle exclude configuration. |
|
fun getModuleString(): String
Returns the module string of the dependency. |
|
fun isEmptyConfig(): Boolean
Returns true if the dependency information is empty. |