stacktrace_with_1_2_71.txt
# gradle
c
stacktrace_with_1_2_71.txt
n
maybe the warnign is correct. you can’t use 1.2.71 with the
kotlin-dsl
or
embedded-kotlin
plugins.
c
So basically you're saying, that if I want to compile my kotlin code with gradle, i have to use the same version gradle uses for my own code? That makes zero sense to me.
My understanding is that gradle uses its bundled version to compile gradle-related scripts and buildSrc and I'm free to use whichever version I need for my project code.
And it worked like that until now.
n
yeah, what you’re saying sounds right. do you use the
kotlin-dsl
or
embedded-kotlin
plugins? if so where in your project do you use them?
c
kotlin-dsl
, but see my comment on the last message, I've solved the problem, it turned out that custom scanning set up in that project did not differentiate between normal subprojects and buildSrc and forced buildSrc kotlin version to general version. I've fixed scanning part and the problem went away.