maven安装配置:

  1. 配置环境变量:【跟Java差不多我就不给图了】

找到maven安装的bin目录所对应的路径:

这里我的路径是:E:\xx\软件工具\apache-maven-3.5.2

然后在环境变量新建一个变量MAVEN_HOME,路径为上面的路径

再在path中新建一个%MAVEN_HOME%/bin

  1. 配置本地仓库:

修改conf/settings.xml中的

<localRepository>

为一个指定目录:

3. 配置阿里云私服

修改conf/settings.xml中的标签,为其添加如下子标签:

<mirror>
      <!--This sends everything else to /public -->
      <id>nexus</id>
      <mirrorOf>*</mirrorOf> 
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    </mirror>
    <mirror>
      <!--This is used to direct the public snapshots repo in the 
          profile below over to a different nexus group -->
      <id>nexus-public-snapshots</id>
      <mirrorOf>public-snapshots</mirrorOf> 
      <url>http://maven.aliyun.com/nexus/content/repositories/snapshots/</url>
    </mirror>

posted @ 2023-01-07 18:31  Liku007  阅读(22)  评论(0编辑  收藏  举报