- 同一个Maven下面同时配置了两个settings.xml文件,一个是settings.xml,另一个是settings-A.xml。在Idea中配置使用settings-A文件,配置生效,发现在执行maven指令时,执行的依然是settings.xml?
两种解决方案:
- 使用完全隔离的两套maven,互不干扰
- 在执行maven指令的时候,加上参数--setting /path/settings-A.xml
- 仓库优先级问题:配置的仓库不起作用
pom文件中配置repository,但是发现不起作用,配置如下
<repositories>
<repository>
<id>repo1</id>
<name>repo1</name>
<url>url1</url>
</repository>
</repositories>
settings.xml中配置如下:
<mirror>
<id>public</id>
<mirrorOf>*</mirrorOf>
<url>url2</url>
</mirror>
**解决方案**:
在网上google得知,maven仓库的优先级为:
**本地仓库 > settings文件中配置的profile > pom文件中仓库地址 >settings文件中的mirror**
很多时候不同项目之间使用公共的仓库地址,所以有时候我们把公共的仓库提取出来,配置到settings.xml中,
官网对使用mirror有下面的好处:
- There is a synchronized mirror on the internet that is geographically closer and faster
- You want to replace a particular repository with your own internal repository which you have greater control over
- You want to run a repository manager to provide a local cache to a mirror and need to use its URL instead
我觉着就是为了更好、更快、更可控。
配置如下
```
<mirror>
<id>UK</id>
<name>UK Central</name>
<url>http://uk.maven.org/maven2</url>
<mirrorOf>central</mirrorOf>
</mirror>
```
id必须是唯一的,是mirror在settings文件中唯一标识
mirrorOf很重要,它的意思是:为id为mirrorof值的repository提供镜像,它有一下的几种配置:
- *:所有的仓库,所有repository都走mirror配置的url
- external:*:表示任何不在localhost和文件系统中的远程库
- r1,r2:表示r1库或者r2库
- *,!r1:除了r1库之外的任何远程库
**在使用mirror的时候,需要注意的是一个repository只能有一个mirror**
因此即使我在pom文件指定了repository,虽然pom文件的repository优先级比mirror优先级高,但是mirrorOf的*已经把所有repository都替换了,所以pom文件中的repository不起作用。
- 部署的地址配置
<distributionManagement>
<repository>
<id>nexus-releases</id>
<url>releaseUrl</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<url>snapshotsUrl/</url>
</snapshotRepository>
</distributionManagement>
这个是个基本知识的问题:我以为这个是配置下载仓库,没想到这个用来管理deploy地址的。
-
依赖的优先级
- 当前pom文件中依赖优先于依赖的依赖
A->target > A->B->target - 复写优先
当前pom文件的依赖优先父pom中的依赖
- 当前pom文件中依赖优先于依赖的依赖
-
依赖的加载顺序
- 根据当前POM的依赖,顺序按照pom.xml声明的顺序
- 父POM的依赖会被最后加载
网友评论