AG
01/09/2023, 5:08 PMbuild-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
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
apply(from = "cache-plugin/src/main/kotlin/convention-cache.settings.gradle.kts")
but after generating a build scan it says that
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?