下载地址:https://downloads.apache.org/maven/maven-3/3.6.3/binaries/
我这里下载的是maven-3.6.3版本,如下图:
下载压缩包成功之后,点开查看,如下图:
文件夹里的目录结构如下图:
从maven官网下载maven-3.6.3压缩包,解压之后,apache-maven-3.6.3的目录结构如下图:
conf/settings.xml是maven的配置文件,在这个配置文件里面,需要配置本地仓库的位置,还需要引入阿里云镜像仓库,为什么呢?因为maven默认用的仓库的地址在国外,从国外的仓库里面下载依赖速度特别的慢,而阿里云镜像仓库在国内,从这个仓库引入依赖特别快,settings.xml配置文件的位置如下图:
在settings.xml中配置本地仓库信息,如下图:
在settings.xml中配置阿里云镜像仓库信息,如下图:
阿里云镜像仓库的代码如下:
<!--配置阿里云Maven镜像--> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>uk</id> <mirrorOf>central</mirrorOf> <name>Human Readable Name for this Mirror.</name> <url>http://uk.maven.org/maven2/</url> </mirror> <mirror> <id>CN</id> <name>OSChina Central</name> <url>http://maven.oschina.net/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> <mirror> <id>nexus</id> <name>internal nexus repository</name> <!-- <url>http://192.168.1.100:8081/nexus/content/groups/public/</url>--> <url>http://repo.maven.apache.org/maven2</url> <mirrorOf>central</mirrorOf> </mirror>