Maven之私服配置

一.配置从私服下载

从私服下载主要是将 central 库的下载地址从https://repo1.maven.org/maven2/修改为私服地址,比如http://localhost:8081/repository/maven-public/。然后配置好访问私服的用户名和密码即可。

了解settings.xml文件结构

  
    
    
    
    
    
    
    
    
    
  • localRepository: 配置本地存储库的位置,默认为${user.home}/.m2/repository
  • interactiveMode: 是否与用户开启交互模式,默认为 true
  • offline: 离线模式,默认为 false
  • pluginGroups: 比如org.eclipse.jetty, 默认有org.apache.maven.plugins and org.codehaus.mojo
  • servers: 配置私服的用户名和密码
  • mirrors: mirror相当于一个拦截器,它会拦截maven对remote repository的相关请求,把请求里的remote repository地址,重定向到mirror里配置的地址。
  • proxies: 代理配置
  • profiles: 配置环境
  • activeProfiles: 配置默认激活的环境

1-配置用户名和密码



    
        repo-releases
        admin
        admin
    
    
        repo-snapshots
        admin
        admin
    

2-配置profile

下面的私服地址是假的。



    me-repo
    
        
        
        
            central
            https://maven.aliyun.com/repository/central
            
                false
            
        
        
        
            repo-releases
            https://repo.rdc.aliyun.com/repository/release/
            
                false
            
        
        
        
            repo-snapshots
            https://repo.rdc.aliyun.com/repository/snapshot/
            
                false
            
        
    
    
        
        
            central
            https://maven.aliyun.com/repository/central
            
                false
            
        
    

这里的 repositories 如果不配置的话,默认会有一个 Maven 中央仓库的配置,同样 pluginRepositories 中如果没有配置的话,默认也是有一个 Maven 中央仓库的配置。
还有!如果 repositories 中没有配置 repository.id 是 central 的 repository,会自动增加一个 Maven 中央仓库的配置,并且是以追加的方式,也就是配置在 repositories 的最后一个。所以如果只配置了私服的 repository 情况下,就会先去私服中下载,私服中下载不到时再去追加上来的 Maven 中央仓库中下载。

3-配置 mirror



    
    
    
        Nexus-aliyun
        central
        Nexus aliyun
        https://maven.aliyun.com/repository/central
    

这里的 mirror 类似于重定向操作,改变 repository 的 url 属性。
如果在 repositories 配置了 central 的地址,则这里不配置也可以!!!
注意,这里写的是central而不是*,是因为我们只想把 Maven 中央仓库的请求重定向到阿里云上,而不是把所有的请求都重定向到阿里云上。Maven 中央仓库仅仅是一个仓库,打开 https://mvnrepository.com/repos发现我们经常使用的https://repo1.maven.org/maven2/仅仅是众多仓库中的一个,只不过这个是比较大而全的仓库而已。如果我们把所有的请求都重定向到这个仓库,那么就会有依赖找不到。

疑问,求解答

还有一个问题就是当时我配置的是*,所以有https://repo.spring.io/libs-milestone/仓库的 jar 包下载不到,那么问题来了,我如果配置的是central,而 repositories 中也没有配置https://repo.spring.io/libs-milestone/ 这个 repository,它是如何找到的呢???

补充:我觉得是 Maven 有一个配置,在没有配置*的 mirror 时会自动查找https://mvnrepository.com/repos中的所有库是否含有这个包。

二. 配置部署到私服

部署到私服就简单了,在项目中的 pom.xml 文件中加入如下内容后,并将访问私服的用户名和密码配置好即可。

在 pom.xml 中加入配置:


    
        local-release
        http://localhost:8081/repository/maven-releases/
    
    
        local-snapshot
        http://localhost:8081/repository/maven-snapshots/
    

然后在 settings.xml 文件中加入访问私服的用户名和密码:


    
        local-release
        snail
        admin
    
    
        local-snapshot
        snail
        admin
    

注意:repository.id 和 server.id 必须是一致的!!!
配置好之后,在项目中执行mvn clean deploy -Dmaven.test.skip即可部署到私服了。

Q:还有一个问题就是我是部署到 release 库了还是 snapshot 库了???
A:根据1.0.0中的内容是否是以-SNAPSHOT为结尾的进行区分,如果想发布到 snapshot 库则必须以-SNAPSHOT为结尾,否则就发布到了 release 库。

你可能感兴趣的:(Maven之私服配置)