Spring/Spring 오류해결
스프링 실행 오류) Execution failed for task ':compileJava'.> Could not resolve all files for configuration ':compileClasspath'. 해결
디깅
2022. 12. 6. 14:42
728x90
실행하자마자 다음과 같은 에러가 발생했다.
Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
해결방법
build.gradle 에 잘못된 부분이 있어서 오류가 났다.
내 경우에는
implementation 'org.springframework.boot:spring-boot-starter-data-jap'
jpa인데 오타가 있었다.(심지어 위에 같은 dependency가 이미 있었다)
이부분을 지워주고 실행하니 깔끔하게 성공!
반응형