We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Workaround using Gradle:
configurations.all { resolutionStrategy { eachDependency { if (it.requested.group == 'org.apache.tomcat.embed') { it.useVersion '7.0.56' } } } }