Spring

메이븐(maven) 빌드 시 "Source option 5 is no longer supperted." 에러가 발생할 경우 해결 방법

mr.november11 2020. 4. 3. 14:18

현상

메이븐(maven) 빌드 시 "Source option 5 is no longer supperted." 에러가 발생할 경우

해결방법

프로젝트 내 pom.xml 파일에 다음과 같이 properties를 추가한다. 

 <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <spring.version>5.0.0.RC2</spring.version>
</properties>

sping.version은 원래 pom.xml에 있던 프로퍼티다.

maven.compiler.source, maven.compiler.target 만 추가하면 된다.