I don't think it's on the gradle plugin portal? Tr...
# ksp
e
I don't think it's on the gradle plugin portal? Try adding
Copy code
pluginManagement {
    repositories {
        gradlePluginPortal()
        mavenCentral()
    }
}
To your settings.gradle
👍 1
e
Thanks, but didn’t work. ☹️
e
Actually, I think it's on Google repo, so you'd need to add
google()
inside
repositories
e
My current project already has both
mavenCentral()
and
google()
.
e
note: it should be published to mavenCentral since version https://github.com/google/ksp/releases/tag/1.5.21-1.0.0-beta07
👍 2
j
you should be able to remove any
google()
repo dependency now, unless you need other artifacts on gmaven other than KSP.