阿里云maven 镜像

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

在idea中,将项目用maven形式导入,

阿里云maven 镜像_第1张图片
选中import Maven projects automatically,这样在项目更改pom后就不需要手动reimport maven。

然后点击下面的enveronment settings

阿里云maven 镜像_第2张图片

maven中选择idea自带的,新建setting.xml 如下: 在User settings file设置该setting.xml 即可。






<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          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">
  

  

  

  
  <pluginGroups>
    
  pluginGroups>

  
  <proxies>
    
  proxies>

  
  <servers>
    

    
  servers>

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

  
  <profiles>
    

    
  profiles>

  
settings>

你可能感兴趣的:(JavaWeb)