Maven 配置多个远程仓库

Maven 配置多个远程仓库

Spike Zhang

配置Maven Settings.xml文件

mirrorOf 将 * 改为 central

1
2
3
4
5
6
7
<!-- 原来的 http://repo1.maven.org  -->
<mirror>
<id>mavenRepository3</id>
<mirrorOf>central</mirrorOf>
<name>mavenRepository3</name>
<url>https://repo.maven.apache.org/maven2/</url>
</mirror>

调整 profiles activeProfiles

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<profiles>
<profile>
<id>private-repository</id>
<repositories>
<repository>
<id>kaadas</id>
<url>http://private-repository/repository/maven-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<!-- <updatePolicy>always</updatePolicy> -->
</snapshots>
</repository>
</repositories>
</profile>
<profile>
<id>maven-central</id>
<repositories>
<repository>
<id>maven-central</id>
<url>https://repo.maven.apache.org/maven2/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>

<activeProfiles>
<activeProfile>private-repository</activeProfile>
<activeProfile>maven-central</activeProfile>
</activeProfiles>
  • 标题: Maven 配置多个远程仓库
  • 作者: Spike Zhang
  • 创建于 : 2024-06-28 08:37:05
  • 更新于 : 2024-07-13 09:46:17
  • 链接: https://chaosbynn.github.io/2024/06/28/Maven-配置多个远程仓库/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论