참고한 링크 : https://jojoldu.tistory.com/698
이 문제의 해결책으로 스프링 부트 2.7.x 로 다운그레이드 하면된다는 글들도 몇개 발견하였다.
그건 원하던 해결책이 아니라서 이 글에서는 완전히 배제한다
라는 말이 참 감명깊게 읽으면서 봤다.
아래 2가지 멘트가 돌아가면서 뜨고 있었다.
(Unsupported class file major version 60)
Could not resolve all files for configuration ':classpath'.
3.0 부터는 Java 17부터 지원된다.
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.4'
id 'io.spring.dependency-management' version '1.1.0'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}