반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- 시간 복잡도
- 무료코딩강의
- 백트래킹
- 무료개발강의
- Java개념
- dp
- 백준알고리즘
- java
- 자바의정석
- BFS
- 다이나믹 프로그래밍
- 자바의정석연습문제풀이
- 백준
- 알고리즘공부
- 백준9단계
- 알고리즘
- 자바개념
- 빅오 표기법
- 자바공부
- 동적계획법
- 개발공부
- 백준단계별로풀어보기
- dfs
- ★
- 코딩공부
- 브루트포스
- 자바
- 백준자바
- ☆
- 자바의정석연습문제
Archives
- Today
- Total
더 많이 실패하기
[gradle] A problem occurred evaluating root project / Could not find method compile() for arguments [] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler. 본문
정보/오류 예외
[gradle] A problem occurred evaluating root project / Could not find method compile() for arguments [] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
김발자~ 2023. 5. 22. 22:22반응형
296.
A problem occurred evaluating root project
Could not find method compile() for arguments [] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
build.gradle의 dependencies에 아래와 같이 적은 후 refresh gradle project를 누르면 뜨는 오류
1
|
compile "라이브러리명"
|
cs |
이 링크를 보아하니 gradle 7.0 이후 compile문은 사용하지 않는다고 한다
compile 대신 implementation을 적어주면 정상적으로 동작한다
1
|
implementation"라이브러리명"
|
cs |
반응형
'정보 > 오류 예외' 카테고리의 다른 글
Comments