步骤 1:修改 Maven 的 settings.xml
文件
-
找到你的 Maven 配置文件
settings.xml
。- Windows:
C:\Users\<你的用户名>\.m2\settings.xml
- Linux/macOS:
~/.m2/settings.xml
- Windows:
-
打开
settings.xml
文件,找到<localRepository>
标签。如果没有该标签,你可以手动添加。 -
配置本地仓库路径,例如:
<settings><localRepository>D:/maven-repo</localRepository>
</settings>
这里的路径
D:/maven-repo
是你希望用作本地仓库的自定义路径,你可以根据实际情况修改为自己的路径。
步骤 2:验证配置是否生效
- 在命令行中运行以下命令,检查 Maven 是否使用了新的本地仓库路径:
mvn help:evaluate -Dexpression=settings.localRepository
- 如果显示的路径是你在
settings.xml
中配置的路径,则说明配置成功。
步骤 3:清理原有缓存的本地仓库
如果你之前已经使用了默认的 .m2/repository
目录,可以考虑删除它,以节省空间:
rm -rf ~/.m2/repository
注意事项
- 权限问题:确保你配置的本地仓库路径对当前用户具有读写权限。
- 本地仓库同步:配置本地仓库后,Maven 会自动将下载的依赖放到新的路径中。
示例:完整的 settings.xml
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0https://maven.apache.org/xsd/settings-1.0.0.xsd"><localRepository>D:/maven-repo</localRepository><mirrors><mirror><id>central</id><name>Maven Central</name><url>https://repo.maven.apache.org/maven2</url><mirrorOf>central</mirrorOf></mirror></mirrors></settings>