검색결과 리스트
글
LANGUAGE/!$%!% ERROR NOTE
2019. 12. 4. 11:20
Gradle
1. Error - 오류
javax.net.ssl.SSLException: SSL peer shut down incorrectly
2. Problem - 문제
불특정 환경에서 gradlew
로 build
할 때 위의 오류가 발생했는데,
나의 경우는 Gitlab-CI
를 사용하는데 Branch간 Merge할 때마다 발생하는 것으로 보인다.
뭔가 Merge할 때는 다른 환경을 만들어서 작업을 하나보다(?)
3. Solved - 해결
./gradlew clean build -Dhttps.protocols=TLSv1.2
protocol 옵션을 이렇게 지정해주니까 해결되었다.
4. Reference - 참조
- SSL shut down incorrectly: https://discuss.gradle.org/t/ssl-shut-down-incorrectly/15218
- SSL peer shut down incorrectly: https://github.com/gradle/gradle/issues/5050