I have a `build-logic-settings` included build in...
# community-support
a
I have a
build-logic-settings
included build in my
pluginManagement
block and I have a convention plugin to configure the build cache inside the project. As I understand from the docs
Copy code
This configuration precedence does not apply to plugin builds included through pluginManagement as these are loaded before the cache configuration itself.
my plugin won't work in
build-logic-settings
, so as a workaround I've applied that plugin directly in
build-logic-settings
Copy code
apply(from = "cache-plugin/src/main/kotlin/convention-cache.settings.gradle.kts")
but after generating a build scan it says that
Copy code
The build cache configuration of the root build differs from the build cache configuration of the early evaluated ':build-logic-settings' included build
so what's the right way to have the same build cache config?