본문 바로가기

웹 개발/Spring Boot

Spring Boot/Gradle) gradle build시 에러 발생/ FAILURE: Build failed with an exception.* What went wrong:Execution failed for task ':test'.

로컬에서는 잘 실행되던 프로젝트가 우분투 서버에 올려두고 gradle build를 하려니 아래와 같이 fail 뜬다. 

1 test completed, 1 failed

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':test'.
> There were failing tests. See the report at: file:///home/tp/tp-platform/build/reports/tests/test/index.html

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.


> Task :test FAILED
7 actionable tasks: 7 executed
Could not execute build using Gradle distribution 'https://services.gradle.org/distributions/gradle-7.0-bin.zip'.

 


1. 우분투에 gradle 설치 (실패) 

아마 우분투에 gradle을 설치하지 않아서 그런가 싶어서 설치해봤다.

sudo apt-get install gradle

설치는 잘 되었으나 여전히 안된다. 

 

2. --debug 옵션으로 실행 (성공)

https://sang12.co.kr/148/gradlew-Execution-failed-for-task-':test'-%EC%98%A4%EB%A5%98

 

gradlew Execution failed for task ':test' 오류

리눅스에서 Gradle 프로젝트 빌드를 위해 gradlew build 명령어를 사용 하는 경우, Execution failed for task ':test'란 메세지를 볼 수 있다

sang12.co.kr

이 블로그 글을 참고해서 gradle --debug build 명령어로 실행시켰더니 에러 없이 잘 된다.