要关闭Maven的自动更新功能,可以在Maven的配置文件(settings.xml)中设置一个参数来禁用自动更新。在settings.xml文件中可以添加如下配置:
<profiles>
<profile>
<id>disable-update</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<maven.artifact.threads>1</maven.artifact.threads>
</properties>
</profile>
</profiles>
将上述配置添加到settings.xml文件中,保存并关闭文件。这样就可以禁用Maven的自动更新功能。如果想要再次启用自动更新,只需将上述配置删除或注释掉即可。