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
'Server > Spring' 카테고리의 다른 글
maven project - dependency 추가 (0) | 2023.08.23 |
---|---|
[Error]The requested profile "pom.xml" could not be activated because it does not exist. (0) | 2023.08.23 |
[Error] org.apache.catalina.LifecycleException (0) | 2023.08.23 |
Spring Framework 특징 및 기본 개념 (0) | 2023.08.23 |