pom.xml jackson-mapper-sal 에러
- 작성자 :
- 장*형
- 작성일 :
- 2013-06-10 18:20:25
- 조회수 :
- 1,520
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
mobile component 혹은 template 에 구성되어 있는 pom.xml 안에
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.6.4</version>
</dependency>
이 부분에서 에러가 납니다.
Multiple annotations found at this line:
- ArtifactTransferException: Failure to transfer
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from
http://repo1.maven.org/maven2/ was cached in the local
repository, resolution will not be reattempted until the update
interval of mvn2 has elapsed or updates are forced. Original
error: Could not transfer artifact
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from/to
mvn2 (http://repo1.maven.org/maven2/): No response
received after 60000
- Missing artifact org.codehaus.jackson:jackson-
mapper-asl:jar:1.6.4
- ArtifactTransferException: Failure to transfer
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from
http://repo.maven.apache.org/maven2 was cached in the
local repository, resolution will not be reattempted until the
update interval of central has elapsed or updates are forced.
Original error: Could not transfer artifact
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from/to
central (http://repo.maven.apache.org/maven2): No response
received after 60000
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.6.4</version>
</dependency>
이 부분에서 에러가 납니다.
Multiple annotations found at this line:
- ArtifactTransferException: Failure to transfer
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from
http://repo1.maven.org/maven2/ was cached in the local
repository, resolution will not be reattempted until the update
interval of mvn2 has elapsed or updates are forced. Original
error: Could not transfer artifact
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from/to
mvn2 (http://repo1.maven.org/maven2/): No response
received after 60000
- Missing artifact org.codehaus.jackson:jackson-
mapper-asl:jar:1.6.4
- ArtifactTransferException: Failure to transfer
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from
http://repo.maven.apache.org/maven2 was cached in the
local repository, resolution will not be reattempted until the
update interval of central has elapsed or updates are forced.
Original error: Could not transfer artifact
org.codehaus.jackson:jackson-mapper-asl:jar:1.6.4 from/to
central (http://repo.maven.apache.org/maven2): No response
received after 60000
A
안녕하세요. 장호형님.
local repository에 있는 jar 파일이 문제가 있는 것 같습니다. (일시적인 네트워크 불안에 의해 잘못된 파일 수신 등)
이 경우는 local repository 위치에서 해당 파일을 삭제 해 다시 빌드를 하시면 되실 것 같습니다.
.../repository/org/codehaus/jackson/jackson-mapper-asl 디렉토리 삭제
또는 maven build ... 시 "Update Snapshots" 옵션을 주시면 다시 최신으로 반영됩니다.
그럼, 즐거운 하루되십시오.
감사합니다.
local repository에 있는 jar 파일이 문제가 있는 것 같습니다. (일시적인 네트워크 불안에 의해 잘못된 파일 수신 등)
이 경우는 local repository 위치에서 해당 파일을 삭제 해 다시 빌드를 하시면 되실 것 같습니다.
.../repository/org/codehaus/jackson/jackson-mapper-asl 디렉토리 삭제
또는 maven build ... 시 "Update Snapshots" 옵션을 주시면 다시 최신으로 반영됩니다.
그럼, 즐거운 하루되십시오.
감사합니다.