You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
내가 생성한 spring boot 프로젝트에서 build.gradle에 compile을 쓰면 build error가 났다. 그 이유는 compile이 deprecated되었기 때문이었다. gradle 7이상부터는 compile은 implementataion로 써야했다. 찾아보니 testCompile 도 deprecated되어 testImplementation로 작성해야 했다.
Todo
공부
compile
이 deprecated되었기 때문이었다. gradle 7이상부터는compile
은implementataion
로 써야했다. 찾아보니testCompile
도 deprecated되어testImplementation
로 작성해야 했다.The text was updated successfully, but these errors were encountered: