티스토리 뷰
개발/개발 기타
[gradle] gradle plugin 사용시 오류 : Execution failed for task ':compileKotlin'.
정선생 2024. 4. 4. 00:00반응형
도커 컨테이너로 빌드한 결과를 만들기위해서 jib 를 사용하는데 플러그인을 써서 사용하려는데 오류가 발생되었다.
https://plugins.gradle.org/plugin/com.google.cloud.tools.jib/3.3.1
Execution failed for task ':compileKotlin'.
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.google.cloud.tools:jib-gradle-plugin:3.3.1.
Required by:
project :
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
원인과 해결
알고보니 repositories 에 mavenCentral() 만 정의 되어있었는데, plugins gradle 관련 의존성을 추가해줘야 해결되었다.
build.gradle.kts
plugins {
...
id("com.google.cloud.tools.jib") version "3.3.1"
...
}
repositories {
mavenCentral()
// -- 추가 :시작--
maven {
url = uri("https://plugins.gradle.org/m2/")
}
// -- 추가 : 끝 --
}
dependencies {
...
implementation("com.google.cloud.tools:jib-gradle-plugin:3.3.1")
...
}
반응형
'개발 > 개발 기타' 카테고리의 다른 글
[gradle] jib 의존성 있을때 빌드 오류 - runtime of a library compatible with Java 8 (0) | 2024.04.03 |
---|
댓글