it sounds you want to add it to the buildscript cl...
# gradle
m
it sounds you want to add it to the buildscript classpath but not apply it in the root?
root.gradle.kts
Copy code
plugins {
  id ("some.plugin") version "1.0.0" apply false
}
child.gradle.kts
Copy code
plugin {
  id("some.plugin")
}