This message was deleted.
# community-support
s
This message was deleted.
z
for example, I migrated
buildSrc/
to
buildSource/
+
includeBuild("buildSource")
and would have to replace all my:
Copy code
plugins {
    `java-library-convention`
}
to:
Copy code
plugins {
    id("java-library-convention")
}
Is there a way to use an
includeBuild("buildSource")
but still get the generated plugin accessors?
e
Copy code
plugins {
    `java-gradle-plugin`
}
will build and register all
*.gradle.kts
as precompiled script plugins
oh wait you're asking about the plugin accessors in the root build? hmm
z
yeah. buildSrc automatically generates those for the root build, but
includeBuild("buildSource")
does not last time I tried it
e
I've never had that since I use dot-qualified names so ``backticks`` don't work anyway, but I was under the impression that it was supposed to work…
I guess it's expected that it doesn't currently work
👍 1
z
thank you!
v
Yes, sadly. One of the few drawbacks when switching from
buildSrc
to included build right now
👍 1