Gradle - Could not find or load main class

前端 未结 13 834
星月不相逢
星月不相逢 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:37

    I just ran into this problem and decided to debug it myself since i couldn't find a solution on the internet. All i did is change the mainClassName to it's whole path(with the correct subdirectories in the project ofc)

        mainClassName = 'main.java.hello.HelloWorld'
    

    I know it's been almost one year since the post has been made, but i think someone will find this information useful.

    Happy coding.

提交回复
热议问题