maven3.5.2 settings.xml 常规配置,使用阿里云
时间: 2023-11-22 07:52:32 浏览: 108
在使用 Maven 构建项目时,可以通过修改 settings.xml 配置文件来指定 Maven 的镜像源,以加快依赖库的下载速度。以下是常规的配置方式:
1. 打开 Maven 安装目录下的 conf 文件夹,找到 settings.xml 文件。
2. 备份原有的 settings.xml 文件,然后用编辑器打开该文件。
3. 在 <mirrors> 标签下添加以下代码:
```xml
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/repository/central</url>
</mirror>
```
这里我们使用了阿里云的镜像源,将 Maven 中心仓库的地址改为阿里云的地址。
4. 在 <profiles> 标签下添加以下代码:
```xml
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
```
这里定义了一个名为 jdk-1.8 的 profile,其中包含了 JDK 1.8 的编译选项。
5. 在 <settings> 标签下添加以下代码:
```xml
<activeProfiles>
<activeProfile>jdk-1.8</activeProfile>
</activeProfiles>
```
这里将默认的 profile 设置为 jdk-1.8。
完成上述步骤后,保存 settings.xml 文件即可。现在 Maven 会从阿里云的镜像源下载依赖库,并使用 JDK 1.8 进行编译。
阅读全文