jlleitschuh
12/08/2016, 6:24 AMall is handled:
val schemaLookup = configurations.create("customizations-schema-lookup") {
it.resolutionStrategy
.componentSelection
.all(object : Action<ComponentSelection> {
@Mutate
override fun execute(selection : ComponentSelection) {
println("Executing")
println(selection)
}
})
}