public class Copy extends AbstractCopyTask
CopySpec for specifying what to copy.
 Examples:
 task copyDocs(type: Copy) {
     from 'src/main/doc'
     into 'build/target/doc'
 }
 //for Ant filter
 import org.apache.tools.ant.filters.ReplaceTokens
 //for including in the copy task
 def dataContent = copySpec {
     from 'src/data'
     include '*.data'
 }
 task initConfig(type: Copy) {
     from('src/main/config') {
         include '**/*.properties'
         include '**/*.xml'
         filter(ReplaceTokens, tokens: [version: '2.3.1'])
     }
     from('src/main/config') {
         exclude '**/*.properties', '**/*.xml'
     }
     from('src/main/languages') {
         rename 'EN_US_(.*)', '$1'
     }
     into 'build/target/config'
     exclude '**/*.bak'
     includeEmptyDirs = false
     with dataContent
 }
 Task.NamerTASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE| Constructor and Description | 
|---|
| Copy() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected org.gradle.api.internal.file.copy.CopyAction | createCopyAction() | 
| protected org.gradle.api.internal.file.copy.CopySpecInternal | createRootSpec() | 
| File | getDestinationDir()Returns the directory to copy files into. | 
| org.gradle.api.internal.file.copy.DestinationRootCopySpec | getRootSpec() | 
| void | setDestinationDir(File destinationDir)Sets the directory to copy files into. | 
copy, createCopyActionExecuter, eachFile, eachFile, exclude, exclude, exclude, exclude, expand, filesMatching, filesMatching, filesNotMatching, filesNotMatching, filter, filter, filter, filter, from, from, from, getDirMode, getDuplicatesStrategy, getExcludes, getFileLookup, getFileMode, getFileResolver, getFileSystem, getFilteringCharset, getIncludeEmptyDirs, getIncludes, getInstantiator, getMainSpec, getSource, include, include, include, include, into, into, into, isCaseSensitive, rename, rename, rename, rename, setCaseSensitive, setDirMode, setDuplicatesStrategy, setExcludes, setFileMode, setFilteringCharset, setIncludeEmptyDirs, setIncludes, withconventionMapping, conventionMapping, getConventionMappingaddValidator, appendParallelSafeAction, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doLast, doLast, execute, finalizedBy, getActionClassLoaders, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getEnabled, getExecuter, getExtensions, getFinalizedBy, getGroup, getIdentityPath, getImpliesSubProjects, getInputs, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, isHasCustomActions, leftShift, mustRunAfter, onlyIf, onlyIf, prependParallelSafeAction, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, toStringprotected org.gradle.api.internal.file.copy.CopyAction createCopyAction()
createCopyAction in class AbstractCopyTaskprotected org.gradle.api.internal.file.copy.CopySpecInternal createRootSpec()
createRootSpec in class AbstractCopyTaskpublic org.gradle.api.internal.file.copy.DestinationRootCopySpec getRootSpec()
getRootSpec in interface org.gradle.api.internal.file.copy.CopySpecSourcegetRootSpec in class AbstractCopyTask@OutputDirectory public File getDestinationDir()
public void setDestinationDir(File destinationDir)
AbstractCopyTask.into(Object) on this task.destinationDir - The destination directory. Must not be null.