Каков правильный синтаксис groovy / gradle для:
zipTree("/path/foo.jar") .include("**/*.xml, **/*.html") .eachWithIndex { file, index -> }
?
Вы можете попробовать:
zipTree('whatever.jar') .matching { include '**/*.MF' } .each { println it }