Maven 빌드 시 Build Fail 오류 해결 방법

최대 1 분 소요

pom.xml을 수정, 추가 한 뒤

  • mvn build
  • mvn package
  • mvn exec:java

등의 goal들을 수행 시 오류가 발생하는 경우가 간혹 있다.

오류 메세지

====================== Error Message ======================

[INFO] ————————————————————————
[INFO] BUILD FAILURE
[INFO] ————————————————————————
[INFO] Total time: 1.320 s
[INFO] Finished at: 2016-09-15T23:01:07+09:00
[INFO] Final Memory: 8M/153M
[INFO] ————————————————————————
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project set: Fatal error compiling: tools.jar not found: C:\Program Files\Java\jre1.8.0_102..\lib\tools.jar -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

======================================================

해결 방법

위와 유사한 메세지가 출력되는 경우 몇 가지 해결 방법이 있다.

  • 다시 한번 Install 한다.

    • 본인의 경우도 Error Test를 하며 두, 세번 돌리다보면 되는 경우가 있다.
  • Project에서 Clean을 한다

    • 상단 메뉴 [Project] - [Clean] 프로젝트가 클린이 되는 경우 될 때가 있다.
  • .m2폴더를 삭제 후 다시 Install

    • 사용자 폴더를 접속하면 .m2 폴더가 있다. 해당 폴더를 STS를 종료한 후 삭제 후 다시 실행, Install시 되는 경우가 있다.
  • tools.jar를 등록해준다.

Reference

댓글남기기