Skip to content

Instantly share code, notes, and snippets.

@iguoli
Last active March 22, 2018 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iguoli/7ef166081035c2cce30b446150bc0724 to your computer and use it in GitHub Desktop.
Save iguoli/7ef166081035c2cce30b446150bc0724 to your computer and use it in GitHub Desktop.
Maven设置

Maven的设置文件settings.xml

  • 用户级别,一般在~/.m2/settings.xml
  • 系统级别,一般在/etc/maven/settings.xml

设置Maven国内阿里云镜像

<!-- Maven国内阿里云镜像 -->
<mirrors>
    <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>        
    </mirror>
</mirrors>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment