I think this should do the trick: ``` configuratio...
# gradle
m
I think this should do the trick:
Copy code
configurations {
    all {
        exclude(module = "jul-to-slf4j")
        exclude(module = "spring-boot-starter-tomcat")
    }
}
m
its pretty interesting how manipulate with groups of depengencies - e.g. I need exclude all
com.fasterxml.jackson.*
that have version
2.8.8
or bump all libs at the same name space to latest version. Did you try simething related?