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
gildor
09/27/2017, 2:14 PM
there is
embeddedKotlinVersion
property in kotlin-dsl
n
napperley
09/28/2017, 2:54 AM
I meant the version of the Kotlin compiler used by the program, not the embedded one used by Gradle Kotlin DSL.