为本地Maven配置代理仓库服务

编程

        Maven中央仓库地址:https://repo1.maven.org/maven2/。

        阿里代理仓库地址:https://maven.aliyun.com/repository/public。

        下面介绍配置Maven从阿里代理仓库下载依赖,首先我们先进入“~/.m2”目录,如下图所示:

                

        如果在家目录中不存在“.m2”目录,请自行创建该目录,并从Maven安装路径下的conf目录中复制一个settings.xml文件到“.m2”目录中。请忽略上图中其他配置文件。

        用文本编辑器(例如Notepad)打开配置文件“settings.xml”,在到配置节点“mirrors”,在该节点下创建一个配置节点“mirror”,如下图所示:

                

代码片段:

<mirror>

<id>nexus</id>

<mirrorOf>*</mirrorOf>

<url>https://maven.aliyun.com/repository/public/</url>

</mirror>

找到配置节点“profiles”,在该节点下创建一个配置节点“profile”,如下图所示:

代码片段:

<profile>

<id>nexus</id>

<repositories>

<repository>

<id>central</id>

<url>http://central</url>

<releases>

<enabled>true</enabled>

<updatePolicy>always</updatePolicy>

</releases>

<snapshots>

<enabled>true</enabled>

<updatePolicy>always</updatePolicy>

</snapshots>

</repository>

</repositories>

<pluginRepositories>

<pluginRepository>

<id>central</id>

<url>http://central</url>

<releases>

<enabled>true</enabled>

<updatePolicy>always</updatePolicy>

</releases>

<snapshots>

<enabled>true</enabled>

<updatePolicy>always</updatePolicy>

</snapshots>

</pluginRepository>

</pluginRepositories>

</profile>

找到配置节点“activeProfiles”,在该节点下创建一个配置节点“activeProfile”,如下图所示:

代码判断:

<activeProfiles>

<activeProfile>nexus</activeProfile>

</activeProfiles>

以上是 为本地Maven配置代理仓库服务 的全部内容, 来源链接: utcz.com/z/516071.html

回到顶部