I am writing a spark application. With the following build.gradle
file, I am getting an error as stated in the title when syncing gradle in Intellij Idea.
plugins {
id 'java'
}
sourceCompatibility = 1.8
mainClassName = 'HelloSpark'
repositories {
mavenCentral()
}
dependencies {
....
}
This is because the property mainClassName
is introduced by the gradle plugin application
. Adding the application
plugin fixed the error:
plugins {
id 'java'
id 'application'
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With