Is there a way to print out the version of the Kot...
# gradle
n
Is there a way to print out the version of the Kotlin compiler being used in the build script (using Gradle Kotlin DSL)? Encountered issues with Kotlin JS not working with Dokka, and it has been mentioned to make make sure that the compiler version (https://youtrack.jetbrains.com/issue/KT-20479) matches the standard library version.
g
there is
embeddedKotlinVersion
property in kotlin-dsl
n
I meant the version of the Kotlin compiler used by the program, not the embedded one used by Gradle Kotlin DSL.