打开 maven 的配置文件( windows 机器一般在 maven 安装目录的 conf/settings.xml ),在 标签中添加 mirror 子节点:
<mirror> <id>aliyunmaven</id> <mirrorOf>*</mirrorOf> <name>阿里云公共仓库</name> <url>https://maven.aliyun.com/repository/public</url> </mirror> <mirror> <id>aliyunmaven</id> <mirrorOf>*</mirrorOf> <name>阿里云公共仓库snapshots</name> <url>https://maven.aliyun.com/repository/apache-snapshots</url> </mirror>
在你的 pom.xml 文件 节点中加入你要引用的文件信息:
<dependency> <groupId>[GROUP_ID]</groupId> <artifactId>[ARTIFACT_ID]</artifactId> <version>[VERSION]</version> </dependency>