fcf44af294
- Display the Kotlin version in kotlin-gradle-plugin. This is needed because if "-version" is specified in compiler arguments, the "info" level of the message printed by the compiler in CLICompiler prevents it from being displayed by default (unless "--debug" is passed to Gradle). - Display the version of JRE the compiler is running on. This will be helpful to diagnose Java 9 related issues in the future. - In CLI, also display the executable name (kotlinc-jvm or kotlinc-js)
12 lines
222 B
Plaintext
Vendored
12 lines
222 B
Plaintext
Vendored
OUT:
|
|
Buildfile: [TestData]/build.xml
|
|
|
|
build:
|
|
[kotlin2js] Compiling [[TestData]/root1] => [[Temp]/out.js]
|
|
[kotlin2js] info: kotlinc-js [KotlinVersion] (JRE [JREVersion])
|
|
|
|
BUILD SUCCESSFUL
|
|
Total time: [time]
|
|
|
|
Return code: 0
|