에러

Travis 권한 에러

1
./mvnw: Permission denied

Spring Boot + Maven 프로젝트 Travis CI 연동 중 발생한 에러


해결

1
2
before_install:
- chmod +x mvnw

설정으로 권한 부여하여 해결

전체 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: java
jdk:
- openjdk8

branches:
only:
- master

# Travis CI 서버의 Home
cache:
directories:
- $HOME/.m2

before_install:
- chmod +x mvnw

# MAVEN 프로젝트는 필요 없음
#script: "./mvnw package"

# CI 실행 완료시 메일로 알람
notifications:
email:
recipients:
- your@gmail.com

참고 사이트

댓글 공유

  • page 1 of 1

Junggu Ji

author.bio


author.job