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
- random
- Oracle
- SVN
- jQuery
- i18n
- JavaScript
- 일괄변경
- yum
- Postfix
- 천단위
- centos
- TextBox
- mariadb
- Selectbox
- 확장자
- Python
- install
- replace
- RabbitMQ
- smarty
- Eclipse
- ubuntu
- 한글 깨짐
- 문자열자르기
- 부모창
- TPL
- php
- MySQL
- docker
Archives
- Today
- Total
wilson's story
[Jenkins] 원격지에서 Maven 빌드를 할때 본문
반응형
Jenkins 세팅에서 원격지 서버에서 Maven을 빌드 해서 적용하고 싶을 경우가 있다
기본적으로 Ubuntu 터미널에서 Maven 사용할때는
mvn clean package
하면 ./target 폴더가 생성되면서 완료 되지만
Jenkins에서 Build Steps 에서
Send files or execute commands over SSH 하위에
Exec command 에서 사용하려면
ERROR: Exception when publishing, exception message [Exec exit status not zero. Status [127]]
Build step 'Send files or execute commands over SSH' changed build result to UNSTABLE
해당 에러처럼 완료가 되지 않고 에러로 끝난다
이럴 경우는 해결방법은 maven의 full path를 넣어주고 하면 된다
/opt/maven/bin/mvn clean package
maven의 full path를 입력해준다
반응형