반응형

아직도 Spring 3.0에서 4.0으로 버전 업을 하면서, Maven 지옥을 벗어나지 못했다. 이번에도 Maven에 대한 문제다.

 

에러내용은 아래와 같다.

The project was not built since its build path is incomplete. Cannot find the class file for org.apache.commons.logging.Log. Fix the build path then try building this project

The type org.apache.commons.logging.Log cannot be resolved. It is indirectly referenced from required .class files

 

한 마디로, dependency가 없으니 등록하라는 소리다.

 

1. pom.xml에서 아래의 dependency를 추가하면 된다.

<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
<dependency>
    <groupId>commons-logging</groupId>
    <artifactId>commons-logging</artifactId>
    <version>1.1.1</version>
</dependency>

 

위의 dependency는 아래의 링크에서 jar 파일을 다운로드 받거나, pom.xml 코드를 받을 수 있다.

https://mvnrepository.com/artifact/commons-logging/commons-logging/1.1.1

 

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기