Groovy中 利用 AntBuilder 拷贝文件

//import groovy.util.AntBuilder //此包默认已经导入
def ant = new AntBuilder()
ant.copy( file : 'test/groovy/xxxx.properties.bak' , tofile : 'test/groovy/xxxx.properties')

编程技巧