要禁用Maven遠程倉庫,可以通過以下兩種方法:
settings.xml
文件中配置<mirrors>
標簽來覆蓋默認的遠程倉庫配置。打開Maven安裝目錄下的conf
文件夾,找到settings.xml
文件,然后在<mirrors>
標簽中添加如下配置:<mirror>
<id>local-repo</id>
<mirrorOf>central</mirrorOf>
<url>file://${user.home}/.m2/repository</url>
</mirror>
這將把Maven遠程倉庫的鏡像地址指定為本地倉庫地址,從而禁用遠程倉庫。
pom.xml
文件中直接配置禁用遠程倉庫。找到<repositories>
標簽,將其中的遠程倉庫地址刪除或注釋掉:<repositories>
<!--
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
-->
</repositories>
這將禁用項目中的所有遠程倉庫,只使用本地倉庫。
請注意,禁用遠程倉庫可能會導致依賴無法下載或構建失敗,因此在禁用遠程倉庫之前請確保你的本地倉庫中已經存在所需的依賴。