Files
obsidian_note/技术探究/maven/mvn 命令 错误.md
2025-12-04 09:12:56 +08:00

14 lines
328 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
### 1. http://0.0.0.0/ 错误
> ![[Pasted image 20220313122140.png]]
解决方案修改对应maven命令的mirror配置注释掉0.0.0.0
```
<mirror>
<id>aliyunmaven</id>
<mirrorOf>*</mirrorOf>
<name>阿里云公共仓库</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
```