关于maven的repositories

Posted 张小贱1987

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于maven的repositories相关的知识,希望对你有一定的参考价值。

在maven repositories视图中,有local repositories和global repositories两种。

local repositories是本地的库,默认目录在C:\Users\用户名\.m2\repository目录下。如果没有特殊配置,只有使用pom.xml的dependency配置而dowm下来的jar包,会默认被放到本地库中。

global repositories是服务器上的库。默认会有一http://repo.maven.apache.org/maven2的库,这个是需要联网的,连接maven的网络库。

默认global repositories库是没有build的,所以不可使用(这里说的使用,是指在pom.xml的dependencies窗口中add,此时如果索引了,就可以模糊匹配。如果是直接在pom.xml中直接写dependency,那么是不要build index的),如果要使用,需要右键选中“full index enabled”。这样会触发从服务器端下载索引 ,过程比较长,之后这个库就可以使用了。

 

如果repositories会经常更新,那么需要在在preferences里面选择maven,选中“Download repository index updates on startup"。

以上是关于关于maven的repositories的主要内容,如果未能解决你的问题,请参考以下文章

关于maven的问题,不知道为啥Eclipse导入maven工程以后报错

关于maven配置的问题

关于maven的几个问题

关于maven的规则插件:Maven Enforcer plugin

关于Maven的一些记录

关于maven中配置远程仓库的问题