38 lines
612 B
Markdown
38 lines
612 B
Markdown
---
|
|
icon: bi:arrows-expand
|
|
date: 2025-05-08
|
|
category:
|
|
- 实用工具
|
|
- JAVA
|
|
tag:
|
|
- maven
|
|
title: maven常用配置
|
|
---
|
|
|
|
|
|
maven常用配置
|
|
<!-- more -->
|
|
|
|
# 阿里云镜像
|
|
|
|
```xml
|
|
<mirror>
|
|
<id>aliyunmaven</id>
|
|
<mirrorOf>central</mirrorOf>
|
|
<name>阿里云公共仓库</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
</mirror>
|
|
```
|
|
|
|
# 配置代理
|
|
```xml
|
|
<proxy>
|
|
<id>http-proxy</id>
|
|
<active>true</active>
|
|
<protocol>http</protocol>
|
|
<host>10.6.212.9</host>
|
|
<port>7897</port>
|
|
<nonProxyHosts>localhost|127.0.0.1|*.local</nonProxyHosts>
|
|
</proxy>
|
|
```
|