|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | METHOD | DETAIL: FIELD | METHOD | |||||||
org.gradle.api.file.CopySourceSpecorg.gradle.api.file.CopySpec
public interface CopySpec extends CopySourceSpec
A set of specifications for copying files. This includes:
into('webroot')
exclude('**/.svn/**')
from('src/main/webapp') {
include '**/*.jsp'
}
from('src/main/js') {
include '**/*.js'
}
In this example, the into and exclude specifications at the root level are inherited by the
two child CopySpecs.
Groovy Documentation