2026-04-02 23:12:36 +08:00

32 lines
608 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.

---
title: win10配置maven
createTime: 2022/04/24
tags:
- Windows
categories:
- 随记
---
## 配置 PATH
```text
MAVEN_HOME : C:\Program Files\Maven
PATH : .;%MAVEN_HOME%\bin;
```
## 配置 repo 和国内源
修改 settings.xml
```xml
# 配置本地仓库settings标签中
<localRepository>C:\Program Files\Maven\repo</localRepository>
# 配置阿里云镜像在mirros标签中配置子标签
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
```