본문 바로가기
Java/Spring with Error

[해결 방법] finished with non-zero exit value 1

by HJ0216 2023. 6. 14.

🟦 기본 환경: IDE: IntelliJ, Language: Java

 

 

IntelliJ + Gradle 환경에서 프로젝트 import 후, 실행 시 다음과 같은 Error 발생

🚨 finished with non-zero exit value 1

 

 

해결 방법

1. Project import 후 첫 시작 시,

Eclipse or Gradle 중 Eclipse 선택

→ 이미, Gradle을 선택한 경우, project import 과정을 처음부터 다시 시작

 

2. Settings 수정

Settings → Build, Execution, Deployment → Build Tools → Gradle

 - Build and run

: Build and run using: Gradle → IntelliJ IDEA 변경

: Run tests using: Gradle → IntelliJ IDEA 변경

 - Gradle

: Use Gradle from: Wrapper → Wrapper task

 

(Optional: IntelliJ Community Version)

3. Gradle.build 수정

dependencies 삭제

: providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'

 

 

 

참고 자료

📚 프로젝트 리틀 나인 팀원분들

 

intellij 실행 시 finished with non-zero exit value 1 오류

intellij, Gradle 환경에서 프로젝트를 첫 실행 할 때 아래와 같은 오류가 발생하는 경우가 있습니다. Execution failed for task ':DemoSpringApplication.main()'. > Process 'command 'JDK경로/bin/java.exe'' finished with non-zero

yjh5369.tistory.com