Gradle - Could not find or load main class

前端 未结 13 824
星月不相逢
星月不相逢 2020-11-29 06:51

I\'m trying to run a very simple project using Gradle and running into the following error when using the gradlew run command:

could not find or l

13条回答
  •  借酒劲吻你
    2020-11-29 07:47

    If you decided to write your hello.World class in Kotlin, another issue might be that you have to reference it as mainClassName = "hello.WorldKt".

    src/main/java/hello/World.kt:

    package hello
    fun main(args: Array) {
        ...
    }
    // class World {} // this line is not necessary
    

提交回复
热议问题