记一次maven 引用不到文件的问题

一般来说建议直接使用系统默认的配置文件

比如:使用 C:\Users\zcl\.m2\settings.xml文件

对其中的源进行修改成阿里云


      Central
      Central
      hello
      http://maven.aliyun.com/nexus/content/groups/public/
   

    
      spring
      spring
      spring
      https://maven.aliyun.com/repository/spring
   

和 镜像地址

F:\mvnrespostiry

全部代码为


          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
 
     F:\mvnrespostiry
 

 

 
 
   
 

 
 
   
 

 
 
   
    
   
 

 
 
   
    
      Central
      Central
      hello
      http://maven.aliyun.com/nexus/content/groups/public/
   

    
      spring
      spring
      spring
      https://maven.aliyun.com/repository/spring
   

 
  
 
 
   

   
 

 

然后cmd->mvn clean  complile  mvn clean install

然后如果还有文件引用不到可以去自己的本地仓库查看是否存在后缀是 .lastupdate的文件(因为网络原因导致的)。如果有请删除,然后再重启idea,右键pom.xml文件。download the sources 等待下载完成 

 

 


 

你可能感兴趣的:(记一次maven 引用不到文件的问题)