This message was deleted.
# community-support
s
This message was deleted.
v
Looks to me like you try to depend from a Gradle Native project (
:module_one:my:module
) on a Gradle Java dependency (
:module_two:my_package
).
🙏 1
r
:module_one:my:module
is a cpp project
Copy code
plugins {
    `cpp-application`
}
while
:module_two:my_package
is indeed a kotlin jvm. it did work with the current config with kotlin 1.6.10
You are correct i had some unnecessary dependency between the projects
thanks!
👌 1
v
No idea why it worked before, but I guess it is more correct to fail. 🙂
Probably 1.6 did not set attributes at all and thus it was simply taken while it now sets attributes and makes it clear that something is not correct
🙌 1