Maven项目中,在pom.xml的</project>标签之前加入一下标签,指定使用阿里云仓库下载jar包。
<!-- 使用aliyun maven --> <repositories> <repository> <id>aliyun</id> <name>aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </repository> </repositories>
使用此方式指定下载源之后,不会根据Maven本地配置下载依赖。
时间: 2024-10-16 15:17:40