Relative Content

Tag Archive for gradlejava-17

Gradle Version Mismatch with Java Build

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 […]