도커 컨테이너로 빌드한 결과를 만들기위해서 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..
도커 이미지로 만들기위해 jib 의존성도 존재하는데, jar 로 빌드하기위해 build 하는데 아래와 같은 오류가 발생된다. 재밌는건, 내 로컬 PC 나 다른 서버에서 빌드할땐 아무런 문제가 없는데 jenkins 서버쪽에서만 나타나는 문제였다. 둘다 jdk 1.8 이었고 다른점은 gradle 버전이 다르다는것이었다. jenkins 쪽은 gradle_6.9.2 이었고, 수동으로 빌드하던 gradle 버전은 7.5 라는것 정도가 달랐다. FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring root project '프로젝트명'. > Could not resolve all artifacts for co..