IDEA maven 缓存问题

   最近被IDEA maven 往死里搞了一次,一旦打包,就会各种找不到jar包,而本地仓库这些jar包都有。各种修改配置文件,修改仓库路径,最终通过替换maven setting 文件来实现逆转。

   IDEA 在maven setting 文件被破坏之后,会使用自己的默认配置,然后就会出现各种问题,在此留个纪念,保留一个可用的maven 配置文件。


          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">
 
  C:\workProject\.m2

 
 
   
     
     
      nexus-public-snapshots
     
      public-snapshots
     
      http://repos.d.xxx.com/nexus/content/groups/public-snapshots
   

    
   
   
   
   
    
   
   
        nexus
        *
        Nexus aliyun
        http://maven.aliyun.com/nexus/content/groups/public
   
 
 

 
 
   
      development
     
     
       
          central
         
          http://central
         
          true
         
          true
       

     

     
     
       
          central
          http://central
          true
          true
       

     

   

   
     
      public-snapshots
     
       
          public-snapshots
         
          http://public-snapshots
          false
          true
       

     

     
       
          public-snapshots
          http://public-snapshots
          false
          true
       

     

   

 

 
 
   
    development
 

 
 
        Release
        admin
        admin123
    

    
        Snapshots
        admin
        admin123
    

    

 

你可能感兴趣的:(IDEA maven 缓存问题)