【vscode】maven settings.xml配置不生效

文章目录

  • 问题
  • 解决
  • 总结


问题

文件夹方式打开项目
maven始终下载依赖到~/.m2/文件夹,而不走自定义settings.xml配置的本地仓库

  • 提前声明,这配置是没问题的…

settings.json里maven相关配置如下:

    "java.configuration.maven.userSettings": "你的路径\\settings.xml",
    "maven.settingsFile": "你的路径\\settings.xml", 
    "maven.executable.path": "你maven的路径\\bin\\mvn.cmd"

maven.settingsFile是Maven for Java 0.35.0插件新版本增加的
如果你的插件版本旧,可以更新或者直接使用 java.configuration.maven.userSettings
【vscode】maven settings.xml配置不生效_第1张图片

  • 参数介绍
    Maven for Java 0.35.0

解决

搞一个工作区出来存到你希望保存的位置,之后将项目文件夹加入这个工作区,配置就会生效
莫名其妙
【vscode】maven settings.xml配置不生效_第2张图片

总结

附上插件地址吧
Maven for Java:https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-maven
https://github.com/Microsoft/vscode-maven/

你可能感兴趣的:(这里啥都有,maven)