Artifact org.codehaus.groovy.modules.http-builder is not found

This artifact group: ‘com.jfrog.bintray.gradle’, name: ‘gradle-bintray-plugin’, version: ‘1.7.3’ dependency artifact group: ‘org.codehaus.groovy.modules.http-builder’, name: ‘http-builder’, version: ‘0.7.2’ is not found. Kindly help me to add it.

I face the same issue. Cannot resolve “org.codehaus.groovy.modules.http-builder:http-builder:0.7.2”. Can someone help resolve the issue??

This version seems to not be available on Maven Central or Gradle Plugin Portal: https://mvnrepository.com/artifact/org.codehaus.groovy.modules.http-builder/http-builder/0.7.2

So you need to add one of the repositories where it is available to the plugin repositories, or make the project publish that version to Maven Central, or make the plugin use a different version or lib.

After 2-3 day hustle this sol worked for me.
remove or comment
//classpath ‘org.codehaus.groovy.modules.http-builder:http-builder:0.7.2’
remove or comment this line
/jcenter()//Deprecated

in buildscript →

 repositories {
        mavenCentral()
        google()
        //maven { url "http://jcenter.bintray.com"} //Deprecated
      
        maven { url 'https://repo.grails.org/grails/core/' }
    }

allprojects {
    repositories {
        mavenLocal()
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
        //jcenter()//Deprecated
        //fix for codehaus http-builder
        maven { url 'https://repo.grails.org/grails/core/' }
   
    }
}
1 Like