스프링 부트와 AWS로 혼자 구현하는 웹 서비스

한동훈·2022년 7월 25일
0

항해99

목록 보기
4/29

dependencies { compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')

에러코드 : A problem occurred evaluating root project 'springboot'.

Could not find method compile() for arguments [org.springframework.boot:spring-boot-starter-web] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

Gradle버전으로 인한 컴파일 오류가 나왔고,
implementation('org.springframework.boot:spring-boot-starter-web')
testImplementation('org.springframework.boot:spring-boot-starter-test')
이 와 같이 수정하여, 오류해결

profile
돌덩이

0개의 댓글