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

cc.catalysts.gradle.plugins.webdeploy.WebDeployExtension.groovy Maven / Gradle / Ivy

The newest version!
package cc.catalysts.gradle.plugins.webdeploy

/**
 * @author Catalysts GmbH, www.catalysts.cc
 */
class WebDeployExtension {

    String destination
    String privateKeyPath
    String productionConfiguration
    Boolean onlyModifiedFiles = true
    List excludes = []

    void exclude(String exclude) {
        excludes.add(exclude)
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy