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
- Intellj
- 오라클
- Spring Boot
- golang
- aws
- 자바
- 자료구조
- JPA
- SQL
- Kafka
- 쿼리
- PL/SQL
- 페이징
- 알고리즘
- DP
- 운영체제
- feign
- 데이터베이스
- Jenkins
- retry
- 코딩
- 클라우드
- MST
- Spring Cloud Feign
- MVC
- Spring
- 디자인 패턴
- 백준
- Spring Cloud
- db
Archives
- Today
- Total
justgo_developer
Jenkins gradle 빌드 및 에러 해결 방법 본문
728x90
반응형
Jenkins gradle 빌드 및 에러 해결 방법
목차
- Jenkins gradle 빌드
- build 시 에러 해결 방법
상세
1. Jenkins gradle 빌드
일단, Jenkins 서버에 gradle을 설치.(리눅스 환경에 젠킨스 서버를 구성하였음.)
sudo apt install gradle
Jenkins에 Gradle 설정
Jenkins 관리 >> Global Tool Configuration >> Gradle >> Gradle 버전 선택 및 Install automatically 체크
Jenkins 빌드 Item 생성
새로운 Item 생성 >> Build >> gradle version(위에 설정해돈 Gradle name 작성)
>> Tasks에 clean, build 입력 >> Build File에 build.gradle 입력
728x90
2. build 시 에러 해결 방법
- Spring Boot plugin requires Gradle 6.8.x, 6.9.x, or 7.x. The current version is Gradle 4.4.1
: Spring boot 버전과 gradle 버전이 안 맞아서 에러 발생
해결방법 : gradle 버전에 맞게 재설치
wget https://services.gradle.org/distributions/gradle-6.8.1-bin.zip -P /tmp
sudo unzip -d /opt/gradle /tmp/gradle-*.zip
sudo vi /etc/profile.d/gradle.sh
---gradle 버전 수정
export GRADLE_HOME=/opt/gradle/gradle-6.8.1
export PATH=${GRADLE_HOME}/bin:${PATH}
source /etc/profile.d/gradle.sh
gradle -v
- DataSourceProperties 관련 에러
: Spring batch는 필수적으로 사용하는 메타 테이블들이 있다. 그래서 DB 설정이 필수적
SpringBatchJenkinsApplicationTests > contextLoads() FAILED
java.lang.IllegalStateException at DefaultCacheAwareContextLoaderDelegate.java:132
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException at ConstructorResolver.java:800
Caused by: org.springframework.beans.factory.BeanCreationException at ConstructorResolver.java:658
Caused by: org.springframework.beans.BeanInstantiationException at SimpleInstantiationStrategy.java:185
Caused by: org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException at DataSourceProperties.java:252
해결방법 : DB 정보 추가
spring:
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/postgres
username: postgres
password: 0000
728x90
반응형
'IT > jenkins' 카테고리의 다른 글
Jenkins 스케줄 중지 (0) | 2023.10.04 |
---|---|
Jenkins로 Spring Batch 스케줄링 (0) | 2023.10.04 |
Linux 환경에서 Jenkins 설치 및 구축 (0) | 2023.10.04 |