maven setting.xml设置

参考别人的 自己试了下好使

Maven的标准settings.xml文件

配置目标

  1. 默认jdk采用java8

  2. 配置阿里云镜像和私服镜像, 并且先从阿里云下载, 下载不到的再去私服下载

 


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

   
    ${user.home}/.m2/repository
  
   
   
   

   
   
       
            releases
            deployment
            He2019
       

       
            snapshots
            deployment
            He2019
       

   

    
   
   
       
            alimaven
            aliyun maven
           
            http://maven.aliyun.com/nexus/content/groups/public/
            central
       

   

   
   
   
       
       
            jdk1.8
           
                true
                1.8
           

           
                UTF-8
                1.8
                1.8
                1.8
           

       

        
       
       
            dev
           
               
                    nexus
                    http://nexus.hepengju.cn:8081/nexus/content/groups/public/
                   
                        true
                   

                   
                        true
                   

               

           

           
               
                    public
                    Public Repositories
                    http://nexus.hepengju.cn:8081/nexus/content/groups/public/
               

           

       

        
       
       
            ali
           
               
                    alimaven
                    aliyun maven
                    http://maven.aliyun.com/nexus/content/groups/public/
                   
                        true
                   

                   
                        true
                   

               

           

           
               
                    alimaven
                    aliyun maven
                    http://maven.aliyun.com/nexus/content/groups/public/
               

           

       

   
    
     
   
        jdk1.8
        dev
        ali
   

你可能感兴趣的:(环境配置等,maven)