api / org.gradle.api.artifacts / ResolvedConfiguration / getFiles

getFiles

abstract fun getFiles(): MutableSet<File>

Returns the files for the configuration dependencies.

Exceptions

ResolveException - when the resolve was not successful.

Return
The artifact files of the specified dependencies.

Since
3.3

abstract fun getFiles(dependencySpec: Spec<in Dependency>): MutableSet<File>

Returns the files for the specified subset of configuration dependencies.

Parameters

dependencySpec - The filter for the configuration dependencies.

Exceptions

ResolveException - when the resolve was not successful.

Return
The artifact files of the specified dependencies.