赞
踩
最新的版本
https://maven.apache.org/download.cgi
较老的版本【3.0.4以上】
https://archive.apache.org/dist/maven/maven-3
更老的版本【3.0.4以下】
https://archive.apache.org/dist/maven/binaries
Maven 3.8+需要JDK 17或更高版本才能执行。
Maven 3.9+需要JDK 8或更高版本才能执行。
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/repository/public</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirrors>
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>阿里云公共仓库</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
</mirrors>
阿里云—+maven原始仓库(解决阿里云镜像缺失资源的问题)
<mirrors> <mirror> <id>aliyunmaven</id> <mirrorOf>central</mirrorOf> <name>阿里云公共仓库</name> <url>https://maven.aliyun.com/repository/central</url> </mirror> <mirror> <id>repo1</id> <mirrorOf>central</mirrorOf> <name>central repo</name> <url>http://repo1.maven.org/maven2/</url> </mirror> <mirror> <id>aliyunmaven</id> <mirrorOf>apache snapshots</mirrorOf> <name>阿里云阿帕奇仓库</name> <url>https://maven.aliyun.com/repository/apache-snapshots</url> </mirror> </mirrors>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。