Maven 配置阿里云镜像

1. 查找maven setting.xml配置文件

find / -name "setting.xml"

2. 添加阿里云镜像

修改maven根目录下的conf文件夹中的setting.xml文件中的mirrors下添加mirror标签

  
	E:\Maven\repository 
	
		
        
            repo1
            central
            Human Readable Name for this Mirror.
            https://repo1.maven.org/maven2/
        

        
        
            repo2
            central
            Human Readable Name for this Mirror.
            https://repo2.maven.org/maven2/
        

        
		
			aliyunmaven
			*
			阿里云公共仓库
			https://maven.aliyun.com/repository/public
		
	
 

Maven 配置阿里云镜像_第1张图片

结果

Maven 配置阿里云镜像_第2张图片

你可能感兴趣的:(Java,maven,阿里云,数据库)