Gradle에서 jjwt-api를 사용하기 위해 아래 내용을 추가 했다. 그러나 api() method를 찾을 수 없다는 error 메시지 발생한다.
build.grale
api group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.2'
Gradle에서 발생한 Issue 내용
A problem occurred evaluating root project 'secure-exam'.
> Could not find method api() for arguments [{group=io.jsonwebtoken, name=jjwt-api, version=0.11.2}] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
구글링 검색 결과 java library project에서 java 대신 java-library plugin를 사용 해야함
- apply plugin: 'java' //제거
+ apply plugin: 'java-library' //추가
참조
android - Could not find method api() for arguments [directory 'libs'] - Stack Overflow
'개발언어 > Java' 카테고리의 다른 글
[Spring jpa] could not extract ResultSet; SQL [n/a] error (0) | 2022.02.01 |
---|---|
Invalid Gradle JDK configuration found. error (0) | 2022.01.14 |
springboot initializer 로 jpa library 추가 후 실행 오류 (0) | 2021.12.17 |
AES256 java & c# encrypt, decrypt 처리 (1) | 2021.12.06 |
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port. (0) | 2021.09.28 |