In one of our android app module, bintray dependency has been used with version: 1.7.3.
"com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
While generating signed APK, the build is failing due to missing pom file of HTTP-Builder-0.7.2, which is the dependency used by the bintray plugin.

We tried by upgrading the bintray plugin with 1.8.5, but the issue persists since this plugin version also uses the HTTP-Builder-0.7.2 version.
While going through the bintray's buil.gradle file, we noticed, that testCompile uses the HTTP-Builder library version 0.7.1 and while building the application same dependency is having version 0.7.2 defined. Hence, there could be a chance that build will not be failing during testing but android build got failed while generating the signed build.
Can anybody help to share steps to resolve the same?