How can i include a dependency which is excluded in configration level in gradle?

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 ?