I have a precompiled settings plugin, `elara.build...
# community-support
g
I have a precompiled settings plugin,
elara.buildCache.settings.gradle.kts
, it get properly IDE support and gets also compiled in
buildSrc/build
, but Gradle cant find it whenever I try to import it in
settings.gradle.kts
..
v
Where do you have it?
g
in
buildSrc
v
buildSrc
is since many many years only available after the settings script was evaluated, so you cannot have anything you need in the settings script in
buildSrc
. Move to an included build that you include within
pluginManagement
to have a settings plugin.
g
ok, I'll try, thanks!
👌 1