문제상황
인프런 강의를 따라 프로젝트 설정을 한 뒤 기본소스코드를 실행했더니
Execution failed for task ':compileJava'. 에러가 발생했다
Execution failed for task ':compileJava'.
> invalid source release: 11
* 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.
원인
그래들 JVM 버전이 11이하 버전인데
build.gradle에 sourceCompatibility 설정이 11로 되어있었기 때문
해결
File > setting >Build, Execution, Deployment > Build Tools > Gradle > Gradle projects > Gradle JVM
참고문서
https://manystory.tistory.com/87
댓글