Getting the following error:
Could not create an instance of type org.gradle.api.internal.artifacts.dependencies.DefaultExternalModuleDependency_Decorated.
Error happens when executing any gradle command in the directory.
Directory structure:
Root has two children: A and B
B has child C
In directory C, which depends on subproject in A
C/build.gradle:
…
.dependencies {
compile project: (’:A’)
C/settings.gradle:
include ‘:A’
project(’:A’).projectDir = “…/…/A”