with
Adds the given specs as a child of this spec.
def contentSpec = copySpec {
from("content") {
include "**/*.txt"
}
}
task copy(type: Copy) {
into "$buildDir/copy"
with contentSpec
}
Content copied to clipboard
Return
this
Parameters
source Specs
The specs to add