标签: gradle groovy build.gradle
groovy / gradle的正确语法是:
zipTree("/path/foo.jar") .include("**/*.xml, **/*.html") .eachWithIndex { file, index -> }
?
答案 0 :(得分:0)
您可以尝试:
zipTree('whatever.jar') .matching { include '**/*.MF' } .each { println it }