본문 바로가기
Java 웹 프로그래밍

IntelliJ "Could not target platform" 에러

by irerin07 2021. 5. 13.
728x90

그레이들을 사용하여 자바11 스프링 프로젝트를 만들다가 다음과 같은 에러를 확인했다

Execution failed for task ':compileJava'.
> Could not target platform: 'Java SE 11' 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.

다음과 같이 프로젝트 설정을 확인하여 에러 해결 완료

 

File -> Project Structure -> Project 에서 Project SDK, Project Language Level 확인

File -> Project Structure -> Modules 에서 Sources 탭에 Language level 확인

File -> Settings -> Build, Execution, Deployment -> Compiler -> Java Compiler Project bytecode version 확인

File -> Settings -> Build Tools -> Gradle Gradle JVM 확인

728x90