当前位置:   article > 正文

maven项目设置阿里镜像源,设置编译源码的jdk版本_maven 编译指定 aliyun-maven

maven 编译指定 aliyun-maven

第一种方式 修改setting.xml文件

在mirrors标签写添加,

<mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>
</mirror>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

然后将配置文件复制到C:/中.m2文件下例如下图路径。这样每一个项目的maven使用阿里镜像源下载jar包。在idea中每一个项目使用的settings.xml文件都是不一样的,如果只是修改设置里的路径,但是下一个项目还是到系统盘下(默认的路径)

设置编译的jdk版本

在标签下添加

<profile>
      <id>jdk-1.8</id>
 
      <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>1.8</jdk>
      </activation>
 
      <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
      </properties>
</profile>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

最好放在下面的路径下,一劳永逸

第二种方式修改项目下的pom.xml文件

    <repositories>
        <repository>
            <id>maven-ali</id>
            <url>http://maven.aliyun.com/nexus/content/groups/public//</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
                <updatePolicy>always</updatePolicy>
                <checksumPolicy>fail</checksumPolicy>
            </snapshots>
        </repository>
    </repositories>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

子模块的依赖也会到阿里镜像源下载jar包

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/87273
推荐阅读
相关标签
  

闽ICP备14008679号