Java/Spring with Error
[해결 방법] finished with non-zero exit value 1
HJ0216
2023. 6. 14. 22:24
🟦 기본 환경: 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'
참고 자료
📚 프로젝트 리틀 나인 팀원분들