如何记录 gradle 复制方法的文件?
Posted
技术标签:
【中文标题】如何记录 gradle 复制方法的文件?【英文标题】:How to log the files of the gradle copy method? 【发布时间】:2015-04-06 10:08:58 【问题描述】:是否可以在方法copy
中使用 println 将所有文件名打印到控制台。或者是否有其他选项可以打印复制的文件?
copy
from "$source"
into "$target"
include "foo"
include "xyz"
println ???
【问题讨论】:
【参考方案1】:不妨试试:
copy
from "$source"
into "$target"
include "foo"
include "xyz"
eachFile println it.name
【讨论】:
以上是关于如何记录 gradle 复制方法的文件?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Gradle + Spring boot 运行多个配置文件? [复制]