what's the Kotlin counterpart of something like th...
# community-support
g
what's the Kotlin counterpart of something like this?
Copy code
jar {
    from {
        (configurations.compileClasspath - configurations.exclusion).collect {
            it.isDirectory() ? [] : zipTree(it).matching {
                include "lib/**",..
            }
        }
    }
}
t
Copy code
from(provider {
    (configurations.compileClasspath.get() - configurations.exclusion.get()).map { … }
})
?
g
the
-
keeps me worrying, but I'll give it a try
thanks Thomas