EDIT:
Turns out it was not a bug but misconfiguration on my part.
Original question
Due to this bug in IntelilJ I have to add
configurations {
all {
exclude(group = "ch.qos.logback", module = "logback-classic")
}
}
during IntelliJ gradle sync and then not forget to remove it.
Is there a way to pass a param to gradle on IntelliJ sync? I'd be able to have something like this:
if (project.hasProperty("intellijHack"))
configurations {
all {
exclude(group = "ch.qos.logback", module = "logback-classic")
}
}