Is it possible to select few types by withType ? I mean something like that:
binaries.withType(X, Y) { binary ->
}
Is it possible to select few types by withType ? I mean something like that:
binaries.withType(X, Y) { binary ->
}
binaries.all { binary ->
if ([X, Y].find { it.isInstance(binary) }) {
...
}
}