본문 바로가기
programming/SpringBoot

gradle 라이브러리 추가 오류

by kvve 2022. 2. 24.

gradle에 파일업로드를 위한 라이브러리 추가 중 오류 발생

compile group: 'commons-io', name: 'commons-io', version: '2.6' /* Apache Commons IO */
compile group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.3' /* Apache Commons File Upload */

오류내용

* Where:
Build file 'C:\경로\경로\Desktop\경로\경로\프로젝트명\build.gradle' line: 35

* What went wrong:
A problem occurred evaluating root project 'shop'.
> Could not find method compile() for arguments [{group=commons-io, name=commons-io, version=2.6}] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

CONFIGURE FAILED in 132ms

 

해결

compile, runtime, testCompile, testRuntime 은 Gradle 4.10 (2018.8.27) 이래로 deprecate 되었고 Gradle 7.0 (2021.4.9) 부터 삭제되었다고 한다.

삭제된 네 명령은 각각 implementation, runtimeOnly, testImplementation, testRuntimeOnly 으로 대체되었다.

 

compile -> implementation으로 변경하여 오류해결

implementation group: 'commons-io', name: 'commons-io', version: '2.6' /* Apache Commons IO */
implementation group: 'commons-fileupload', name: 'commons-fileupload', version: '1.3.3' /* Apache Commons File Upload */

 

 

참고 : https://velog.io/@g0709-19/Gradle-Could-not-find-method-compile-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95

'programming > SpringBoot' 카테고리의 다른 글

SpringBatch 기초 공부  (0) 2022.09.22
SpringBoot 프로젝트 배포  (0) 2022.04.21

댓글