I came across Gradle Groovy DSL snippet like below:
configurations {
all*.exclude group:'org.apache.hadoop', module:'hadoop-core'
}
The all*.exclude
confused me totally. Is the above block equivalent to below?
configurations {
all {
exclude group:'org.apache.hadoop', module:'hadoop-core'
}
}
Also, is there a reference that explains the all*.exclude
syntax?
Thanks.