阿里云maven镜像

阿里常用maven镜像链接->>>

  1. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
  3. <localRepository>${user.home}/.m2/repository</localRepository>
  4. <interactiveMode>true</interactiveMode>
  5. <offline>false</offline>
  6. <mirrors>
  7. <mirror>
  8. <id>alimaven</id>
  9. <name>aliyun maven</name>
  10. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  11. <mirrorOf>central</mirrorOf>
  12. </mirror>
  13. </mirrors>
  14. </settings>