인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

준환김's profile image
준환김

asked

Spring Boot Concepts and Utilization

Creating an AutoConfiguration Part 1: Starter and AutoConfigure

mvn install시 오류뜨시는 분들 참조

Written on

·

459

1

오류

[ERROR] Source option 5 is no longer supported. Use 6 or later.

[ERROR] Target option 1.5 is no longer supported. Use 1.6 or later.

[INFO] 2 errors

해결책

pom.xml에 밑에 내용 추가.

<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
spring-bootjavaspring

Answer 2

0

준환김님의 프로필 이미지
준환김
Questioner

아니요. 그냥 여러번 실행하니까 갑자기 되더라구요...

0

whiteship님의 프로필 이미지
whiteship
Instructor

이전 질문에서 mvn 명령어를 찾지 못한다고 질문하셨었는데 이 문제였나요?

준환김's profile image
준환김

asked

Ask a question