build.gradle 의 dependencies 에서
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('mysql:mysql-connector-java')
위 두 코드를 입력하는 과정에서,
Could not find method compile() for arguments [org.springframework.boot:spring-boot-starter-data-jpa] ~
이라는 에러가 떴다.
구글링을 해보니, Gradle 7.0 버전 이후로는 compile 이라는 명령은 없어졌다고 한다.
compile 대신 implementation 이라는 명령을 써야했다.
'Develop > Trouble Shooting' 카테고리의 다른 글
Git Error : main -> main (0) | 2022.08.29 |
---|---|
Git Error : CRLF will be replaced by LF (0) | 2022.08.29 |
VS Code Error : crbug/1173575, non-JS module files deprecated. (0) | 2022.08.26 |
spring boot - naver open api 를 통해서 맛집 리스트 만들기 (0) | 2022.07.24 |
Visual Studio Code_Java (0) | 2022.06.16 |