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
}
}