오류 코드 : ArtifactTransferException: Failure to transfer (...) 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 (...) Failed to transfer http://repo.maven.apache.org/maven2/ (..) Error code 501, HTTPS Required
원인 : 보안 때문에 https로 다운 받아야 하는 거였음
해결 방법 : pom.xml에 아래 레퍼지토리 추가
<repositories>
<repository>
<id>mvn2</id>
<url>https://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
생명의 은인 : https://gcomx.blogspot.com/2020/05/spring.html
'기록 > Java&Spring&Eclipse' 카테고리의 다른 글
[java] 자바 super 개념과 예시 (0) | 2022.06.07 |
---|---|
[Eclipse/Tomcat] 톰캣 추가 안 되는 오류 (0) | 2022.06.02 |
[Eclipse] handshake_failure 오류 (0) | 2022.06.02 |
메이븐 정리글 + (0) | 2022.06.02 |
[Java/Eclipse/Spring] 자바 버젼 업그레이드 시 오류 ASM ClassReader failed to parse class file (0) | 2022.06.02 |