statmark56
06/30/2023, 2:04 AMkotlinCompilerPluginClasspath[Variant]
.
But when I apply kotlinCompilerPluginClasspathDebug project (":my-kcp-plugin")
it returns error:
Could not find method kotlinCompilerPluginClasspathDebug() for arguments [project ':my-kcp-plugin'] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Anyone face the same issue? I have a workaround but above is much elegant if it's working.Vampire
06/30/2023, 6:48 AMstatmark56
06/30/2023, 8:02 AMVampire
06/30/2023, 8:59 AMkotlinCompilerPluginClasspathDebug
on which you try to declare a dependency.
"order" means that whatever triggers this configuration to be created has to come before you try to add a dependency, otherwise you try to add a dependency to something that does not exist yet.statmark56
06/30/2023, 9:18 AM