Unable to resolve multiple gradle pulgin dependencies all of a sudden

Attaching logs which describes the ongoing issue since Nov 7th 2022
com.github.kt3k.coveralls:com.github.kt3k.coveralls.gradle.plugin:2.8.2 is trying to resolve to invalid version of org.codehaus.groovy.modules.http-builder:http-builder:0.7.2.
same goes with nebula.netflixoss.gradle.plugin:5.1.1

There are couple of other dependencies which got effected with same issue. i.e.,
build-info-extractor:2.11.3. and org.ajoberstar:grgit:1.9.3.

> Could not resolve all artifacts for configuration ':classpath'.
11:12:36     > Could not find org.codehaus.groovy.modules.http-builder:http-builder:0.7.2.
11:12:36       Searched in the following locations:
11:12:36         - https://repo.maven.apache.org/maven2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.pom
11:12:36         - https://repo.maven.apache.org/maven2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.jar
11:12:36         - https://plugins.gradle.org/m2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.pom
11:12:36         - https://plugins.gradle.org/m2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.jar
11:12:36       Required by:
11:12:36           project : > com.github.kt3k.coveralls:com.github.kt3k.coveralls.gradle.plugin:2.8.2 > org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2
11:12:36           project : > nebula.netflixoss:nebula.netflixoss.gradle.plugin:5.1.1 > com.netflix.nebula:gradle-netflixoss-project-plugin:5.1.1 > com.netflix.nebula:gradle-dependency-lock-plugin:5.0.6
11:12:36     > Could not find org.codehaus.groovy.modules.http-builder:http-builder:0.7.2.
11:12:36       Searched in the following locations:
11:12:36         - https://repo.maven.apache.org/maven2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.pom
11:12:36         - https://repo.maven.apache.org/maven2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.jar
11:12:36         - https://plugins.gradle.org/m2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.pom
11:12:36         - https://plugins.gradle.org/m2/org/codehaus/groovy/modules/http-builder/http-builder/0.7.2/http-builder-0.7.2.jar
11:12:36       Required by:
11:12:36           project : > nebula.netflixoss:nebula.netflixoss.gradle.plugin:5.1.1 > com.netflix.nebula:gradle-netflixoss-project-plugin:5.1.1 > com.netflix.nebula:nebula-bintray-plugin:3.5.5 > com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4
11:12:36     > Could not find org.jfrog.buildinfo:build-info-extractor:2.11.3.
11:12:36       Searched in the following locations:
11:12:36         - https://repo.maven.apache.org/maven2/org/jfrog/buildinfo/build-info-extractor/2.11.3/build-info-extractor-2.11.3.pom
11:12:36         - https://repo.maven.apache.org/maven2/org/jfrog/buildinfo/build-info-extractor/2.11.3/build-info-extractor-2.11.3.jar
11:12:36         - https://plugins.gradle.org/m2/org/jfrog/buildinfo/build-info-extractor/2.11.3/build-info-extractor-2.11.3.pom
11:12:36         - https://plugins.gradle.org/m2/org/jfrog/buildinfo/build-info-extractor/2.11.3/build-info-extractor-2.11.3.jar
11:12:36       Required by:
11:12:36           project : > nebula.netflixoss:nebula.netflixoss.gradle.plugin:5.1.1 > com.netflix.nebula:gradle-netflixoss-project-plugin:5.1.1 > com.netflix.nebula:nebula-bintray-plugin:3.5.5 > org.jfrog.buildinfo:build-info-extractor-gradle:4.7.5
11:12:36     > Could not find org.ajoberstar:grgit:1.9.3.
11:12:36       Searched in the following locations:
11:12:36         - https://repo.maven.apache.org/maven2/org/ajoberstar/grgit/1.9.3/grgit-1.9.3.pom
11:12:36         - https://repo.maven.apache.org/maven2/org/ajoberstar/grgit/1.9.3/grgit-1.9.3.jar
11:12:36         - https://plugins.gradle.org/m2/org/ajoberstar/grgit/1.9.3/grgit-1.9.3.pom
11:12:36         - https://plugins.gradle.org/m2/org/ajoberstar/grgit/1.9.3/grgit-1.9.3.jar
11:12:36       Required by:
11:12:36           project : > nebula.netflixoss:nebula.netflixoss.gradle.plugin:5.1.1 > com.netflix.nebula:gradle-netflixoss-project-plugin:5.1.1 > com.netflix.nebula:nebula-release-plugin:6.3.5 > org.ajoberstar:gradle-git:1.7.2
11:12:36  
11:12:36  * Try:
11:12:36  Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
11:12:36  
11:12:36  * Get more help at https://help.gradle.org

build.gradle config

.........
.........
repositories {
//        jcenter()
        mavenCentral()
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }

    dependencies {
        classpath 'com.netflix.nebula:gradle-extra-configurations-plugin:4.0.1'
        classpath 'org.apache.ant:ant:1.9.7'
    }
}
plugins {
    id 'nebula.netflixoss' version '5.1.1'
    id 'com.github.kt3k.coveralls' version '2.8.2'
}
.......
.......

There is an ongoing issue with jcenter dependency downloads, I just want to make sure whether this is related to the same or not

Thanks,
Leela K.

1 Like

I have this dependency,

classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.4.RELEASE

which pulls in org.codehaus.groovy.modules.http-builder:http-builder:0.7.2

This was working as of 11/07/2022 noon central time, and since 4pm central time we are getting the following errors below, it appears the artifact is missing.

Could not resolve all artifacts for configuration ‘classpath’.
Could not find org.codehaus.groovy.modules.http-builder:http-builder:0.7.2.
Searched in the following locations:

as of 1pm central time, I am no longer seeing the issue.