- My Gradle Wrapper settings are the following:
distributionPath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-7.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
- From the Compatibility Matrix in Gradle – it seems I can install Java Version 17? I used Eclipse Temurin 17.0.5 to work with it. I also have the following in my
build.gradle
file
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
- I am getting error
"Unsupported Class File Major Version 61"
I am running everything from command line (MacOS terminal). What do I have to do to get the ./gradlew build
working successfully?
Regards,