Gradle - Could not find or load main class

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

    Modify build.gradle to put your main class in the manifest:

    jar {
        manifest {
            attributes 'Implementation-Title': 'Gradle Quickstart',
                       'Implementation-Version': version,
                       'Main-Class': 'hello.helloWorld'
        }
    }
    

提交回复
热议问题