maven依赖下载慢以及无法下载的处理

一般来说都是网络访问不到中央仓库导致无法下载或下载过慢,在所使用的maven的config目录下的settings.xml文件中配置阿里云镜像:

<mirrors>
  <mirror>
    <id>alimavenid>
    <name>aliyun mavenname>
    <url>http://maven.aliyun.com/nexus/content/groups/public/url>
    <mirrorOf>centralmirrorOf>
  mirror>

  <mirror> 
    <id>ukid>  
    <mirrorOf>centralmirrorOf>  
    <name>Human Readable Name for this Mirror.name>  
    <url>http://uk.maven.org/maven2/url> 
  mirror>

   <mirror>
    <id>CNid>
    <name>OSChina Centralname>
    <url>http://maven.oschina.net/content/groups/public/url>
    <mirrorOf>centralmirrorOf>
  mirror>

  <mirror>
    <id>nexusid>
    <name>internal nexus repositoryname>
    
    <url>http://repo.maven.apache.org/maven2url>
    <mirrorOf>centralmirrorOf>
  mirror>

mirrors>

你可能感兴趣的:(JAVAEE)