Server/Spring

[maven] Source option 7 is no longer supported. Use 8 or later.

달별선장 2023. 8. 23. 08:34
728x90

maven install 시 아래의 오류가 가는 경우 :

source option 7 is no longer supported. Use 8 or later.

 

pom.xml 의 아래 코드를 찾아서 상위의 Java 버전으로 실행하도록 수정

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>3.8.1</version>
  <configuration>
    <source>1.8</source>
    <target>1.8</target>
  </configuration>
</plugin>
728x90