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

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

The newest version!
package com.netflix.gradle.plugins.utils

import org.vafer.jdeb.shaded.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