Gradle没有更多细节':compileKotlin'

时间:2017-09-16 04:51:21

标签: gradle kotlinc

我是gradle和kotlin的新人

当我使用gradle build构建语法错误文件时 它只是显示

Execution failed for task ':compileKotlin'.
> Compilation error. See log for more details

如何使用kotlinc获取哪种行语法错误?

PS:使用vscode,所以我需要它

编辑

抱歉,我错过了错误消息,因为gradlekotlinc

之间存在差异

的gradle:

PS C:\PlayGround2> gradle build
e: C:\PlayGround2\src\main\kotlin\Main.kt: (26, 1): Expecting a top level declaration

> Task :compileKotlin
Using kotlin incremental compilation
...

kotlinc:

PS C:\PlayGround2\src\main\kotlin> kotlinc .\Main.kt
Main.kt:26:1: error: expecting a top level declaration
}       <--- this line not shown in kotlinc

1 个答案:

答案 0 :(得分:0)

这是一个已知问题,有人通过卸载所有Java版本并仅安装JDK 8来解决它。

编辑:同时查看此链接:https://github.com/waicool20/KAGA/issues/27

祝你有个愉快的一天。