Sonarqube Gradle plugin not available in Gradle plugin portal

Running SonarQube gradle plugin 6.3.0.5676, which as of this writing appears to be the latest version published on GitHub:

For some reason, even though this was published 2 days ago, the plugin itself is not available in the Gradle plugin portal:

I see:

Version 6.2.0.5505 (latest) Created 15 May 2025.

We are getting errors like:

  * What went wrong:
  A problem occurred configuring root project 'cas-server'.
  > Could not resolve all artifacts for configuration 'classpath'.
     > Could not find sonarqube-gradle-plugin-6.3.0.5676.jar (org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:6.3.0.5676).
       Searched in the following locations:
           https://plugins.gradle.org/m2/org/sonarsource/scanner/gradle/sonarqube-gradle-plugin/6.3.0.5676/sonarqube-gradle-plugin-6.3.0.5676.jar

Does the release have to be published manually, or have I missed a step?

This build is being run using Gradle 9.1 RC1, Java 21 via GitHub Actions. The Gradle build relevant for this problem is:

buildscript {
    repositories {
        mavenCentral()
        gradlePluginPortal()
        maven {
            url = "https://repo.spring.io/milestone"
            mavenContent { releasesOnly() }
        }
    }

    dependencies {
        classpath libs.gradle.plugin.sonarqube
    }
}

Hey @mmoayyed,

You are correct, we released version 6.3.0 on Monday but had to pull it because of a serious bug that was only detected yesterday. We should be releasing 6.3.1 with the fixes today.

I will update this thread once the release is done.

Cheers,

Dorian

2 Likes

Hello again,

Version 6.3.1 should now be available for download.

Thanks for your patience!

3 Likes

Thank you very much!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.