Could not create service of type ScriptPluginFactory \
using BuildScopeServices.createScriptPluginFactory().
> Could not create service of type CrossBuildFileHashCache \
using BuildSessionScopeServices.createCrossBuildFileHashCache().
./gradlew build를 입력했을 때 위와 같은 에러가 뜨면서 Build가 실패되었다.
./gradlew build --stacktrace로 예외클래스를 찾아보니 ServiceCreationException이라는 친구였다.
* Exception is:
org.gradle.internal.service.ServiceCreationException:
Could not create service of type ScriptPluginFactory \
using BuildScopeServices.createScriptPluginFactory().
이 오류는 Gradle이 ScriptPluginFactory 서비스를 생성하지 못하였기 때문에 발생한 것이다.
따라서 Gradle Wrapper에 실행 권한을 부여하기 위해 아래 명령어를 실행해주면 해결된다 !
chmod +x gradlew
'Server > Docker' 카테고리의 다른 글
[Trouble Shooting] Ubuntu 환경에서 Docker Image Build 시 Geographic area에서 Building이 멈추는 현상 (0) | 2023.05.07 |
---|---|
[ICE-LIFE] Docker MySQL 및 PHP 컨테이너 설치 및 연동 (0) | 2023.01.03 |
[ICE-LIFE] Docker web server 설치 + 데스크탑 Ubuntu PC에 Jupyter Notebook 설치하기 (0) | 2022.11.02 |
Docker Container 시작하기, Docker Voulme 사용 (0) | 2022.07.14 |
Docker-compose에 Spring Boot, MariaDB 올리기 (0) | 2021.12.28 |