I\'m trying to run a very simple project using Gradle and running into the following error when using the gradlew run command:
gradlew run command
could not find or l
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' } }