Maven远程镜像无法使用解决方案(HTTPS协议Maven仓库无法使用解决方案)

在2020年01月15日maven的两大远程库都停止了对http协议的支持,改成了https,使用https就涉及到了认证问题。

501 HTTPS Required. 
Use https://repo1.maven.org/maven2/
More information at https://links.sonatype.com/central/501-https-required

Maven远程镜像无法使用解决方案(HTTPS协议Maven仓库无法使用解决方案)_第1张图片要解决这个问题可以暂时使用一下仓库地址,这个也是官方给出的解决方案:

	
	
		repo1
		central
		Human Readable Name for this Mirror.
		http://insecure.repo1.maven.org/maven2/
	

当然如果能够使用Maven国内镜像就更好比如阿里云的镜像,既支持http协议又支持https协议。


    aliyunmaven
    central
    central
    https://maven.aliyun.com/repository/central

你可能感兴趣的:(Maven)