美文网首页
1. Maven配置

1. Maven配置

作者: 乄Denve彡 | 来源:发表于2021-06-13 12:42 被阅读0次
1.1 配置环境变量
image.png
image.png
1.2 修改阿里云镜像(settings.xml)
  <mirrors>
    <mirror>
      <id>aliyunmaven</id>
      <mirrorOf>central</mirrorOf>
      <name>aliyun maven</name>
      <url>https://maven.aliyun.com/repository/public</url>
    </mirror>

    <mirror>
      <id>nexus-aliyun</id>
      <mirrorOf>*</mirrorOf>
      <name>Nexus aliyun</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public</url>
    </mirror>
  </mirrors>


1.3 本地仓库(settings.xml)
  <localRepository>D:\04.All_IDE\11.Maven\apache-maven-3.8.1\maven-repo</localRepository>

新建maven项目时,Run中报警告:No archetype found in remote catalog. Defaulting to internal catalo在远程目录中没有
在maven的VM Options加上-DarchetypeCatalog=internal参数,如下:

image.png
或者
image.png

相关文章

网友评论

      本文标题:1. Maven配置

      本文链接:https://www.haomeiwen.com/subject/wgwnjltx.html