This message was deleted.
# community-support
s
This message was deleted.
t
Yes, plugins (and their dependencies) appear in the
buildscript-gradle.lockfile
(e.g. https://github.com/tbroyer/gradle-errorprone-plugin/blob/main/buildscript-gradle.lockfile) Of course you have to lock the buildscript dependencies:
Copy code
buildscript {
    dependencyLocking {
        lockAllConfigurations()
    }
}
(and I additionally use
lockMode.set(LockMode.STRICT)
)