一、报错信息
> Task :compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Could not target platform: 'Java SE 17' using tool chain: 'JDK 8 (1.8)'.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
二、解决方法
File -> Setting -> Build,Execution,Deployment -> Build Tools -> Gradle
红框内的Gradle JVM改为JAVA17,问题解决!
三、问题原因
gradle 是依赖groovy ,groovy又是依赖jdk 的,明显,如果你gradle 使用的jdk版本如果是1.8。但是这里,你却要求gradle 用jdk10对你的代码进行编译,这必然会有问题,因为已知jdk的交叉编译仅仅能够编译版本低于当前jdk版本。例如jdk 8 能编译 1.8 1.7 1.6…1.4版本的java源代码 ,但是不能编译jdk9 或者10 的代码。
该部分引自blueboz2