I am using a gradle plugin which is having a configuration level exclude of commons-logging, like below pattern.
project.configurations {
all*.exclude group: 'commons-logging', module: 'commons-logging'
}
I cannot change the plugin exclusion, but i need this dependency and plugin in my project. How can i force include this dependency ?