Groovy Documentation

org.gradle.api.file
[Java] Interface CopySourceSpec


public interface CopySourceSpec

Specifies sources for a file copy.

Authors:
Steve Appling


Method Summary
CopySourceSpec from(java.lang.Object... sourcePaths)

Specifies source files or directories for a copy.

CopySourceSpec from(java.lang.Object sourcePath, groovy.lang.Closure configureClosure)

Specifies the source files or directories for a copy and creates a child CopySourceSpec.

 

Method Detail

from

public CopySourceSpec from(java.lang.Object... sourcePaths)
Specifies source files or directories for a copy. The given paths are evaluated as for Project.files.
Parameters:
sourcePaths - Paths to source files for the copy


from

public CopySourceSpec from(java.lang.Object sourcePath, groovy.lang.Closure configureClosure)
Specifies the source files or directories for a copy and creates a child CopySourceSpec. The given source path is evaluated as for Project.files .
Parameters:
sourcePath - Path to source for the copy
configureClosure - closure for configuring the child CopySourceSpec


 

Groovy Documentation