This message was deleted.
# community-support
s
This message was deleted.
m
The stack I'm getting looks like this:
Copy code
org.gradle.api.GradleScriptException: A problem occurred evaluating root project 'andr_core'.
...
Caused by: org.gradle.api.internal.plugins.PluginApplicationException: Failed to apply plugin 'org.gradle.jacoco'.
...
Caused by: org.gradle.api.UnknownDomainObjectException: Extension of type 'VersionCatalogsExtension' does not exist. Currently registered extension types: [ExtraPropertiesExtension, FulladleModuleExtension, DirectiveDataExtension, ReportingExtension]
The convention plugin I'm applying that seems to manifest this is roughly:
Copy code
override fun apply(project: Project) {
        if (!project.isRoot) {
            project.configurations.all {
                project.extensions.getByType(VersionCatalogsExtension::class.java)
            }
        }
    }
The project being evaluated in the above stack is NOT the root project so there appears to be some coupling that I'm not yet aware of?