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

ai.digital.integration.server.deploy.internals.CopyDeployServerUtil.kt Maven / Gradle / Ivy

There is a newer version: 23.3.0-1025.941
Show newest version
package ai.digital.integration.server.deploy.internals

import org.apache.commons.io.FileUtils
import java.io.File

class CopyDeployServerUtil {
    companion object {
        fun execute(copyFolders: Map>, workingDir: String) {
            copyFolders.forEach { entry ->
                val where = entry.key
                val listOfDirectories = entry.value

                listOfDirectories.forEach { directory ->
                    FileUtils.copyDirectory(directory, File("${workingDir}/${where}"))
                }
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy