Maven 设置阿里云镜像
Maven 大约 852 字主要配置
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
完整版简易配置
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
</mirrors>
</settings>
阅读 202 · 发布于 2023-03-26
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb扫描下方二维码关注公众号和小程序↓↓↓

昵称:
随便看看
换一批
-
Linux 使用 awk 累加一列数字阅读 7274
-
Spring Boot JdbcTemplate 插入枚举类型阅读 3862
-
Spring Boot 启动时自动创建数据库阅读 249
-
Windows 子系统 Ubuntu 启动 Docker 报错解决方法阅读 4025
-
PostgreSQL distinct 和 distinct on 区别阅读 1552
-
MongoDB 提示 None of the hosts for replica set could be contacted阅读 2811
-
Windows 使用 Wireshark 抓取本地数据包阅读 2369
-
Test.class found in top-level directory (unnamed package not allowed in module)阅读 3837
-
Spring Boot 使用 Validated group 分组校验阅读 1130
-
npm 查看版本信息阅读 1261