[WARNNING][TaskAgile] The compiler compliance specified is 1.8 but a JRE 14 is used

2020. 11. 29. 22:16개발 관련/ERROR

The compiler compliance specified is 1.8 but a JRE 14 is used

 

ERROR 내용

  • 컴파일러는 1.8을 지원하지만 JRE는 14를 사용하고있다.

 


해결 방법

  • windows - vscode 환경일 때 : pom.xml에서 <properties> 내에 java.version을 14로 고친다.
<properties>
    ...
    <java.version>14</java.version>
    ..
  </properties>