What virtual machine is used by IntelliJ when I co...
# announcements
j
What virtual machine is used by IntelliJ when I compile Kotlin code? Is it connected with configured JRE/JDK 1.8 etc? Is it Oracle HotSpot?
e
Well, compilation isn't really connected with runtime environment, which is VM. So basically it uses JDK you specified and Kotlin Compiler
n
what about scratch files and kotlin script evaluation ? i assume those use the installed kotlin plugin version and the default project jdk ?
i
I think that uses Kotlin Version from Gradle