All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.gradle.plugins.utils.ApacheCommonsFileSystemActions.groovy Maven / Gradle / Ivy

There is a newer version: 11.10.0
Show newest version
package com.netflix.gradle.plugins.utils

import org.apache.commons.io.FileUtils

class ApacheCommonsFileSystemActions implements FileSystemActions {
    @Override
    void copy(File from, File to) {
        FileUtils.copyFile(from, to)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy