open class ResolutionOptions
Options configuring the resolution of a single dependency.
Author
Clement Escoffier
ResolutionOptions()
Options configuring the resolution of a single dependency. |
open fun addExclusion(exclusion: String): ResolutionOptions
Adds an exclusion. The excluded dependencies and its children would not be resolved. The exclusion is given under the following form: |
|
open fun equals(other: Any?): Boolean |
|
open fun getExclusions(): MutableList<String> |
|
open fun hashCode(): Int |
|
open fun isWithTransitive(): Boolean |
|
open fun removeExclusion(exclusion: String): ResolutionOptions
Removes an exclusion. |
|
open fun setWithTransitive(withTransitive: Boolean): ResolutionOptions
Sets whether or not the resolution of the dependency should include the transitive dependencies. |