.travis.yml 파일을 생성하고 추가한다음 travis 페이지에 가보니 해당 오류가 발생하였다.
위 오류를 해결하기 위해 아래 블로그 글을 참조하였다.
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=ggomjae&logNo=221778504421
위 오류가 발생하는 이유는 gradlew 파일의 권한 문제 때문이다. 해당 문제해결을 위해서
chmod +x gradlew 명령어를 사용한다.
.travis.yml 파일에 아래 코드를 추가한다.
before_install:
- chmod +x gradlew
위 코드 추가로 인해서 성공적으로 배포가 되었다.
'오늘만난오류' 카테고리의 다른 글
org.apache.catalina.LifecycleException: Protocol handler start failed (0) | 2022.01.01 |
---|---|
Check your deployment group settings to make sure the tags for your Amazon EC2 instances (0) | 2021.12.30 |
could not extract ResultSet (0) | 2021.12.26 |
Gradle build daemon disappeared unexpectedly (0) | 2021.12.26 |
Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain (0) | 2021.12.25 |