Hi
i have a task to copy files from one location to another using the provided Copy task, the task does copy the files but it doesnt log the files it copied. Logging would be very helpful in debugging, in case build/packaging fails
task CopyTask(type: Copy) {
from("E:/Temp/DirTest/BuildScripts/configuration/tomcat") {
include '**/*'
include '**/*.svn'
into "/pkg-output-temp"
}
...
//Does a few more copies like above
..
into "E:/Temp/DirTest/packaging"
}