force

abstract fun force(notations: Array<Any>): ResolutionStrategy(source)

Allows forcing certain versions of dependencies, including transitive dependencies. Appends new forced modules to be considered when resolving dependencies.

It accepts the following notations:

Example:
plugins {
    id 'java' // so that there are some configurations
}

configurations.all {
  resolutionStrategy.force 'asm:asm-all:3.3.1', 'commons-io:commons-io:1.4'
}

Return

this ResolutionStrategy instance

Since

1.0-milestone-7

Parameters

notations

typically group:name:version notations to append