Marcel Overdijk
01/29/2018, 12:10 PMconfigurations.all {
exclude group: 'org.slf4j', module: 'jul-to-slf4j'
}
I tried something like:
configurations {
all { configuration ->
configuration.exclude("org.slf4j", "jul-to-slf4j")
}
}
but it does't work, IntelliJ complain returning a Boolean instead of Unit...