Release policy for gradle-tooling-api

Is there any guarantee that for any Gradle release there is also a matching gradle-tooling-api release? I’m asking because there does not seem to be a 4.10.1 release of gradle-tooling-api (yet). As we’re using code like implementation "org.gradle:gradle-tooling-api:${gradle.gradleVersion}" I’m wondering whether we need to change that to not align the versions.

Hi Sebastian,

There should be a tooling-api jar for every Gradle release.

The tooling API jar for 4.10.1 is right here: https://repo.gradle.org/gradle/repo/org/gradle/gradle-tooling-api/4.10.1/

Where did you search for the dependency?

Cheers,
Stefan

Turns out I was only using JCenter, which by then did not have gradle-tooling-api:4.10.1, but by now it has catched up. Thanks for the clarification!