Gradle - Could not find or load main class

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

    For a project structure like

    project_name/src/main/java/Main_File.class
    

    in the file build.gradle, add the following line

    mainClassName = 'Main_File'
    

提交回复
热议问题