I see two problems here, one with sourceSet another with mainClassName.
-
Either move java source files to
src/main/javainstead of justsrc. Or setsourceSetproperly by adding the following to build.gradle.sourceSets.main.java.srcDirs = ['src'] -
mainClassNameshould be fully qualified class name, not path.mainClassName = "hello.HelloWorld"