Settings.xml 文件
-
<localRepository>
配置本地仓库地址,如:
<localRepository>D:\.m2\repository</localRepository>
-
<servers>
配置私服地址。如果为公共服务器,不需要账号,密码,则可不配置。只要配置<mirror>标签即可(<mirror>见1.3小节)如:
<server>
<id>nexus</id>
<username>yanfa</username>
<password>yanfa</password>
</server>
-
<mirror>
mirror则相当于一个代理,它会拦截去指定的远程repository下载构件的请求,然后从自己这里找出构件回送给客户端。配置mirror的目的一般是出于网速考虑。
如果配置为*,如下面配置文件所示,则如果这个mirror挂掉,maven将无法访问任何远程仓库,因而将无法下载构件。
配置远程仓库地址:
<mirror>
<id>nexus</id>
<name>Nexus</name>
<url>http://localhost:8081/nexus/content/groups/public/</url>
<mirrorOf>*</mirrorOf>
</mirror>
-
<repository>
internal repository是指在局域网内部搭建的repository,它跟central repository, jboss repository等的区别仅仅在于其URL是一个内部网址。
配置远程仓库信息:
<repository>
<id>nexus</id>
<name>Nexus Repository</name>
<url>http://localhost:8081/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
-
<pluginRepository>
配置插件信息,如tomcat等插件:
<pluginRepository>
<id>nexus</id>
<name>Nexus Repository</name>
<url>http://localhost:8081/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
常见问题
- Q: Maven 本地仓库明明有jar包,pom文件还是报错解决?
A: 解决方法:找到出错的jar包文件在本地仓库的位置,删掉_maven.repositories文件。
原因:更换settings.xml 配置文件后,如果配置的respositoryId中不包含这个私服的repositoryId,maven本不会让这个本地的jar包,maven就会自动到配置的库中找到,找不到就会报错。 - Q: 明明已经设置本地仓库,但maven每次更新时,还是要到网上下载?
A: 本地没有下载到真正的 jar 包(而是带有last-updated后缀的文件),只能再到网上下载。 - Q: Maven 应用jar 版本不对,如何解决?
A: 1. 首先查看本地仓库中的目标jar包版本是否存在。2. 如果存在,查看.pom 文件,知道其坐标, 然后在需要引用的工程的pom.xml文件中添加dependency 引用。 3. 如果不存在, 看私服中是否有改目标版本的文件,有,就下载即可。
优势
未使用maven管理,每一个项目都要带一些jar包,增大了项目的体积,需要更多的时间部署;同时每个项目之间肯定有一些公用的jar包,如果能够集中式管理jar,这样会节省很多的空间。