微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Maven下载后配置

settings.xml配置

文件路径
如:E:\apache-maven-3.8.3\conf\settings.xml

设置本地库路径

Windows认为C盘用户的根路径
C:\Users\用户名\

- <!--  localRepository
   | The path to the local repository maven will use to store artifacts.
   |
   | Default: ${user.home}/.m2/repository
  <localRepository>/path/to/local/repo</localRepository>
  
  --> 
  <localRepository>E:/apache-maven-3.8.3/.m2/repository</localRepository> 

设置阿里云maven库

- <mirrors>
- <!--  mirror
     | Specifies a repository mirror site to use instead of a given repository. The repository that
     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
     |
    <mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
    <mirror>
      <id>maven-default-http-blocker</id>
      <mirrorOf>external:http:*</mirrorOf>
      <name>Pseudo repository to mirror external repositories initially using HTTP.</name>
      <url>http://0.0.0.0/</url>
      <blocked>true</blocked>
    </mirror>
     
  --> 
 <mirror>
  <id>nexus</id> 
  <name>aliyun Maven</name> 
  <mirrorOf>*</mirrorOf> 
  <url>http://maven.aliyun.com/nexus/content/groups/public</url>
 <!-- 
    <url>http://maven.tedu.cn/nexus/content/groups/public</url>
  --> 
 <!--  
    <url>http://maven.oschina.net/content/groups/public</url> 
  --> 
  </mirror>
  </mirrors>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐