일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 운영체제
- oracle
- 자바
- K6
- 문법 정리
- spring
- 오라클 디비
- 자바 프로젝트
- jsp
- 티스토리
- smart cast
- 백준 알고리즘
- dynamic query
- c#
- 초대장
- auto configure
- 프로젝트
- gradle
- JVM
- resilience4j
- hyperledger
- 파이썬 소스
- MongoDB
- SQL
- 학점
- 파이썬
- 오라클
- 유사코드
- 알고리즘
- 리눅스
- Today
- Total
모종닷컴
ArtifactTransferException: Failure to transfer ... 본문
메이븐, 스프링 부트 cli 설치 후 이클립스에서 spring boot 프로젝트를 만들 때 났었던 에러입니다.
Error ====================================================================================
ArtifactTransferException: Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:3.0.2 from https://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.apache.maven.plugins:maven-resources-plugin:pom:3.0.2 from/to central (https://repo.maven.apache.org/maven2): The operation was cancelled.
java.lang.reflect.InvocationTargetException
========================================================================================
원인 : *.lastUpdated 파일이 업데이트에 대한 메이븐 검사를 차단하고 필요한 jar파일을 다운로드하지 못하게 하는 것.
해결 : /{user}/.m2/repository 안에 있는 .lastUpdated 파일을 삭제하는 것.
cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i
'Programming > JAVA' 카테고리의 다른 글
자바8 - List (0) | 2018.10.02 |
---|---|
자바8 - 제네릭 (2) | 2018.09.03 |
자바 8 - 람다식 (0) | 2018.08.19 |
Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter (0) | 2018.05.27 |
메이븐(Maven)이란? (0) | 2018.03.17 |