use of org.gradle.internal.resource.local.FileLocalResource in project gradle by gradle.
the class ExternalResourceResolver method put.
private void put(File src, URI destination) throws IOException {
repository.withProgressLogging().put(new FileLocalResource(src), destination);
putChecksum(src, destination);
}
Aggregations