Dumb question: how does one apply a plugin that is...
# gradle
a
Dumb question: how does one apply a plugin that is local to the project (from buildSrc)? Is the same
Copy code
plugins {
  id("com.example.Plugin")
}
supposed to work?
e
Good timing 🙂 The
plugins {}
block is supported to request & apply plugins from
buildSrc
in Gradle 4.3, see https://docs.gradle.org/current/release-notes.html#more-use-cases-supported-using-the-plugins-{}-block
m
That is great news! Should help with local testing as well, I suppose