idea pom.xml 中的jar包 install不了本地仓库 解决方案
报错:501 HTTPS Required.
Use https://repo.maven.apache.org/maven2/
More information at https://links.sonatype.com/central/501-https-required
原因:官方有原来的http更换成了https
解决方案:在本地maven 的setting.xml文件中镜像处加入:
<mirror>
<id>central</id>
<name>Maven Repository Switchboard</name>
<url>https://repo1.maven.org/maven2/</url>
<mirrorOf>central</mirrorOf>
</mirror>
ok 。解决